diff options
author | Bernard Normier <bernard@zeroc.com> | 2014-05-16 12:30:43 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2014-05-16 12:30:43 -0400 |
commit | 3f3450439b7558443a58279980aadaf069f5a086 (patch) | |
tree | e3d5a066653b410e668b0f71f5cfde42e07177c4 /cpp/src/Ice/PropertiesI.cpp | |
parent | Fixed build (diff) | |
download | ice-3f3450439b7558443a58279980aadaf069f5a086.tar.bz2 ice-3f3450439b7558443a58279980aadaf069f5a086.tar.xz ice-3f3450439b7558443a58279980aadaf069f5a086.zip |
Updated nativeToUTF8 and UTF8ToNative for consistency with stringToWstring/wstringToString
Diffstat (limited to 'cpp/src/Ice/PropertiesI.cpp')
-rw-r--r-- | cpp/src/Ice/PropertiesI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/PropertiesI.cpp b/cpp/src/Ice/PropertiesI.cpp index b466a2cf105..121e6ed8889 100644 --- a/cpp/src/Ice/PropertiesI.cpp +++ b/cpp/src/Ice/PropertiesI.cpp @@ -702,8 +702,8 @@ Ice::PropertiesI::parseLine(const string& line, const IceUtil::StringConverterPt return; } - key = IceUtil::UTF8ToNative(converter, key); - value = IceUtil::UTF8ToNative(converter, value); + key = IceUtil::UTF8ToNative(key, converter); + value = IceUtil::UTF8ToNative(value, converter); setProperty(key, value); } |