summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/ReferenceFactory.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-07-11 16:41:12 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-07-11 16:41:12 +0000
commit8ff7c2608eb845c3b6b637f4648ae726a11a158b (patch)
treef1dfb4d3a63752357480561fdd94f37692d8eb47 /cppe/src/IceE/ReferenceFactory.cpp
parentfix some recent changes to build in J2ME (diff)
downloadice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.bz2
ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.xz
ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.zip
Put back IceUtil namespace
Diffstat (limited to 'cppe/src/IceE/ReferenceFactory.cpp')
-rw-r--r--cppe/src/IceE/ReferenceFactory.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/cppe/src/IceE/ReferenceFactory.cpp b/cppe/src/IceE/ReferenceFactory.cpp
index 7a4def68b71..9cac8af81c6 100644
--- a/cppe/src/IceE/ReferenceFactory.cpp
+++ b/cppe/src/IceE/ReferenceFactory.cpp
@@ -171,7 +171,7 @@ IceInternal::ReferenceFactory::create(const string& str)
// or double quotation marks.
//
string idstr;
- end = Ice::checkQuote(s, beg);
+ end = IceUtil::checkQuote(s, beg);
if(end == string::npos)
{
ProxyParseException ex(__FILE__, __LINE__);
@@ -284,7 +284,7 @@ IceInternal::ReferenceFactory::create(const string& str)
if(s[argumentBeg] != '@' && s[argumentBeg] != ':' && s[argumentBeg] != '-')
{
beg = argumentBeg;
- end = Ice::checkQuote(s, beg);
+ end = IceUtil::checkQuote(s, beg);
if(end == string::npos)
{
ProxyParseException ex(__FILE__, __LINE__);
@@ -324,7 +324,7 @@ IceInternal::ReferenceFactory::create(const string& str)
throw ex;
}
- if(!Ice::unescapeString(argument, 0, argument.size(), facet))
+ if(!IceUtil::unescapeString(argument, 0, argument.size(), facet))
{
ProxyParseException ex(__FILE__, __LINE__);
ex.str = str;
@@ -599,14 +599,14 @@ IceInternal::ReferenceFactory::create(const Identity& ident, BasicStream* s)
void
IceInternal::ReferenceFactory::setDefaultRouter(const RouterPrx& defaultRouter)
{
- Ice::Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
_defaultRouter = defaultRouter;
}
RouterPrx
IceInternal::ReferenceFactory::getDefaultRouter() const
{
- Ice::Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
return _defaultRouter;
}
@@ -617,14 +617,14 @@ IceInternal::ReferenceFactory::getDefaultRouter() const
void
IceInternal::ReferenceFactory::setDefaultLocator(const LocatorPrx& defaultLocator)
{
- Ice::Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
_defaultLocator = defaultLocator;
}
LocatorPrx
IceInternal::ReferenceFactory::getDefaultLocator() const
{
- Ice::Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
return _defaultLocator;
}