diff options
Diffstat (limited to 'cpp/test/Ice/retry/Server.cpp')
-rw-r--r-- | cpp/test/Ice/retry/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/retry/Server.cpp b/cpp/test/Ice/retry/Server.cpp index 0828d6d2c40..fcd856114f9 100644 --- a/cpp/test/Ice/retry/Server.cpp +++ b/cpp/test/Ice/retry/Server.cpp @@ -18,7 +18,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) communicator->getProperties()->setProperty("TestAdapter.Endpoints", "default -p 12010 -t 10000:udp"); Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("TestAdapter"); Ice::ObjectPtr object = new RetryI; - adapter->add(object, Ice::stringToIdentity("retry")); + adapter->add(object, communicator->stringToIdentity("retry")); adapter->activate(); communicator->waitForShutdown(); return EXIT_SUCCESS; |