diff options
Diffstat (limited to 'cpp/demo/Ice/throughput/Server.cpp')
-rw-r--r-- | cpp/demo/Ice/throughput/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/Ice/throughput/Server.cpp b/cpp/demo/Ice/throughput/Server.cpp index 1de93f68745..baf8780367b 100644 --- a/cpp/demo/Ice/throughput/Server.cpp +++ b/cpp/demo/Ice/throughput/Server.cpp @@ -30,7 +30,7 @@ int ThroughputServer::run(int argc, char* argv[]) { Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("Throughput"); - adapter->add(new ThroughputI, Ice::stringToIdentity("throughput")); + adapter->add(new ThroughputI, communicator()->stringToIdentity("throughput")); adapter->activate(); communicator()->waitForShutdown(); return EXIT_SUCCESS; |