summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/stringConverter/Server.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-08-01 10:09:48 -0400
committerBernard Normier <bernard@zeroc.com>2016-08-01 10:09:48 -0400
commit4aa7ae5129a9cb66f5ea26165310e96603af576c (patch)
treef8ee6859ad547b59cc28eadb1212f403f51dfff7 /cpp/test/Ice/stringConverter/Server.cpp
parentDo not initialize OpenSSL locks if already done by other library. (diff)
downloadice-4aa7ae5129a9cb66f5ea26165310e96603af576c.tar.bz2
ice-4aa7ae5129a9cb66f5ea26165310e96603af576c.tar.xz
ice-4aa7ae5129a9cb66f5ea26165310e96603af576c.zip
Move StringConverter API to namespace Ice
Diffstat (limited to 'cpp/test/Ice/stringConverter/Server.cpp')
-rw-r--r--cpp/test/Ice/stringConverter/Server.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/stringConverter/Server.cpp b/cpp/test/Ice/stringConverter/Server.cpp
index 3e3b6e17541..e82f6caf0ab 100644
--- a/cpp/test/Ice/stringConverter/Server.cpp
+++ b/cpp/test/Ice/stringConverter/Server.cpp
@@ -24,14 +24,14 @@ public:
virtual wstring widen(ICE_IN(string) msg, const Ice::Current&)
{
- return IceUtil::stringToWstring(msg, IceUtil::getProcessStringConverter(),
- IceUtil::getProcessWstringConverter());
+ return stringToWstring(msg, Ice::getProcessStringConverter(),
+ Ice::getProcessWstringConverter());
}
virtual string narrow(ICE_IN(wstring) wmsg, const Ice::Current&)
{
- return IceUtil::wstringToString(wmsg, IceUtil::getProcessStringConverter(),
- IceUtil::getProcessWstringConverter());
+ return wstringToString(wmsg, Ice::getProcessStringConverter(),
+ Ice::getProcessWstringConverter());
}
virtual void shutdown(const Ice::Current& current)