From 09c33fa2189c2b538d6618d4bd78d6e6e32b5c3a Mon Sep 17 00:00:00 2001 From: Marc Laukien Date: Fri, 9 Apr 2004 16:38:00 +0000 Subject: moved StringUtil to IceUtil, fixed names --- cpp/src/Ice/Reference.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/src/Ice/Reference.cpp') diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp index 82b926d575d..a40c9ac17b8 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -23,13 +23,13 @@ #include #include #include -#include #include #include // For getIncomingConnections(). #include #include #include #include +#include using namespace std; using namespace Ice; @@ -294,7 +294,7 @@ IceInternal::Reference::toString() const // the reference parser uses as separators, then we enclose // the facet string in quotes. // - string fs = encodeString(facet, ""); + string fs = IceUtil::escapeString(facet, ""); if(fs.find_first_of(" \t\n\r:@") != string::npos) { s << '"' << fs << '"'; @@ -359,7 +359,7 @@ IceInternal::Reference::toString() const } else if(!adapterId.empty()) { - string a = encodeString(adapterId, ""); + string a = IceUtil::escapeString(adapterId, ""); // // If the encoded adapter id string contains characters which // the reference parser uses as separators, then we enclose -- cgit v1.2.3