diff options
Diffstat (limited to 'cpp/src/IceGrid/LocatorI.cpp')
-rw-r--r-- | cpp/src/IceGrid/LocatorI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/LocatorI.cpp b/cpp/src/IceGrid/LocatorI.cpp index 47d9321ca67..0284e0a95e7 100644 --- a/cpp/src/IceGrid/LocatorI.cpp +++ b/cpp/src/IceGrid/LocatorI.cpp @@ -98,7 +98,7 @@ public: // if(obj) { - _cb->ice_response(obj->ice_newIdentity(_obj->ice_getIdentity())); + _cb->ice_response(obj->ice_identity(_obj->ice_getIdentity())); } else { @@ -232,7 +232,7 @@ LocatorI::Request::response(const Ice::ObjectPrx& proxy) } Lock sync(*this); - _proxies.push_back(proxy->ice_newIdentity(Ice::stringToIdentity("dummy"))); + _proxies.push_back(proxy->ice_identity(Ice::stringToIdentity("dummy"))); // // If we received all the required proxies, it's time to send the @@ -277,7 +277,7 @@ LocatorI::Request::sendResponse() } Ice::ObjectPrx proxy = _locator->getCommunicator()->stringToProxy("dummy:default"); - _amdCB->ice_response(proxy->ice_newEndpoints(endpoints)); + _amdCB->ice_response(proxy->ice_endpoints(endpoints)); } } |