diff options
Diffstat (limited to 'cpp/test/IceGrid/activation/Server.cpp')
-rw-r--r-- | cpp/test/IceGrid/activation/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/activation/Server.cpp b/cpp/test/IceGrid/activation/Server.cpp index dadeed4f250..cf94c08f77b 100644 --- a/cpp/test/IceGrid/activation/Server.cpp +++ b/cpp/test/IceGrid/activation/Server.cpp @@ -35,7 +35,7 @@ Server::run(int argc, char* argv[]) Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("TestAdapter"); TestI* test = new TestI(adapter); Ice::ObjectPtr obj = test; - adapter->add(test, Ice::stringToIdentity(properties->getProperty("Ice.ServerId"))); + adapter->add(test, communicator()->stringToIdentity(properties->getProperty("Ice.ServerId"))); int delay = properties->getPropertyAsInt("ActivationDelay"); if(delay > 0) |