diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
commit | 3edb9d1e2ca92fff1bea08d23338cabee47dd2e7 (patch) | |
tree | b62a1dc465ac160616672c6a64f630396e4fae05 /cpp/src/IceGrid/LocatorI.cpp | |
parent | Synced with Ice for C++ changes. (diff) | |
download | ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.bz2 ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.xz ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.zip |
Fixed half of bug 847: ice_newIdentiy -> ice_identity, ice_newFacet ->
ice_facet, etc
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)); } } |