summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/simple
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceGrid/simple')
-rw-r--r--cpp/test/IceGrid/simple/Server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/simple/Server.cpp b/cpp/test/IceGrid/simple/Server.cpp
index 5bc7aa01d69..1ba08e9b8af 100644
--- a/cpp/test/IceGrid/simple/Server.cpp
+++ b/cpp/test/IceGrid/simple/Server.cpp
@@ -30,7 +30,7 @@ Server::run(int argc, char* argv[])
Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("TestAdapter");
Ice::ObjectPtr object = new TestI();
string id = communicator()->getProperties()->getPropertyWithDefault("Identity", "test");
- adapter->add(object, communicator()->stringToIdentity(id));
+ adapter->add(object, Ice::stringToIdentity(id));
shutdownOnInterrupt();
try