diff options
Diffstat (limited to 'cppe/test/IceE/custom/Server.cpp')
-rw-r--r-- | cppe/test/IceE/custom/Server.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/test/IceE/custom/Server.cpp b/cppe/test/IceE/custom/Server.cpp index 1672d2eda42..5919bb7e74b 100644 --- a/cppe/test/IceE/custom/Server.cpp +++ b/cppe/test/IceE/custom/Server.cpp @@ -42,9 +42,9 @@ public: setCommunicator(Ice::initialize(argc, argv, initData)); Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("TestAdapter"); - adapter->add(new TestIntfI(communicator()), Ice::stringToIdentity("test")); - adapter->add(new Test1::WstringClassI, Ice::stringToIdentity("wstring1")); - adapter->add(new Test2::WstringClassI, Ice::stringToIdentity("wstring2")); + adapter->add(new TestIntfI(communicator()), communicator()->stringToIdentity("test")); + adapter->add(new Test1::WstringClassI, communicator()->stringToIdentity("wstring1")); + adapter->add(new Test2::WstringClassI, communicator()->stringToIdentity("wstring2")); adapter->activate(); #ifndef _WIN32_WCE |