summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/deployer/Service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceGrid/deployer/Service.cpp')
-rw-r--r--cpp/test/IceGrid/deployer/Service.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/deployer/Service.cpp b/cpp/test/IceGrid/deployer/Service.cpp
index b9587ec1889..c5905ea722e 100644
--- a/cpp/test/IceGrid/deployer/Service.cpp
+++ b/cpp/test/IceGrid/deployer/Service.cpp
@@ -58,7 +58,7 @@ ServiceI::start(const string& name,
Ice::PropertiesPtr properties = communicator->getProperties();
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter(name);
Ice::ObjectPtr object = new TestI(properties);
- adapter->add(object, communicator->stringToIdentity(properties->getProperty(name + ".Identity")));
+ adapter->add(object, stringToIdentity(properties->getProperty(name + ".Identity")));
adapter->activate();
}