summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/ReferenceFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src/IceE/ReferenceFactory.cpp')
-rw-r--r--cppe/src/IceE/ReferenceFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/IceE/ReferenceFactory.cpp b/cppe/src/IceE/ReferenceFactory.cpp
index b575a869109..1e221884d28 100644
--- a/cppe/src/IceE/ReferenceFactory.cpp
+++ b/cppe/src/IceE/ReferenceFactory.cpp
@@ -470,7 +470,7 @@ IceInternal::ReferenceFactory::create(const string& str)
throw ex;
}
- end = Ice::checkQuote(s, beg);
+ end = IceUtil::checkQuote(s, beg);
if(end == string::npos)
{
ProxyParseException ex(__FILE__, __LINE__);
@@ -490,7 +490,7 @@ IceInternal::ReferenceFactory::create(const string& str)
beg++; // Skip leading quote
}
- if(!Ice::unescapeString(s, beg, end, adapter) || adapter.size() == 0)
+ if(!IceUtil::unescapeString(s, beg, end, adapter) || adapter.size() == 0)
{
ProxyParseException ex(__FILE__, __LINE__);
ex.str = str;