diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-13 12:36:51 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-13 12:36:51 +0000 |
commit | 312e0d97cf47153504db430d190cad7d6338da3e (patch) | |
tree | 854b3c37cbc980c19f684eb2d3c23824446d5e67 /cppe/src/IceE/ReferenceFactory.cpp | |
parent | More IceGrid adapter replication support. (diff) | |
download | ice-312e0d97cf47153504db430d190cad7d6338da3e.tar.bz2 ice-312e0d97cf47153504db430d190cad7d6338da3e.tar.xz ice-312e0d97cf47153504db430d190cad7d6338da3e.zip |
Added back IceUtil
Diffstat (limited to 'cppe/src/IceE/ReferenceFactory.cpp')
-rw-r--r-- | cppe/src/IceE/ReferenceFactory.cpp | 4 |
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; |