diff options
Diffstat (limited to 'cppe/demo/IceE/hello/Server.cpp')
-rw-r--r-- | cppe/demo/IceE/hello/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/demo/IceE/hello/Server.cpp b/cppe/demo/IceE/hello/Server.cpp index 924ba67ddd2..0cd58d42cfc 100644 --- a/cppe/demo/IceE/hello/Server.cpp +++ b/cppe/demo/IceE/hello/Server.cpp @@ -17,7 +17,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("Hello"); Ice::ObjectPtr object = new HelloI; - adapter->add(object, Ice::stringToIdentity("hello")); + adapter->add(object, communicator->stringToIdentity("hello")); adapter->activate(); communicator->waitForShutdown(); return EXIT_SUCCESS; |