diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-11-05 10:51:56 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-11-05 10:51:56 -0400 |
commit | a9207c4a7e8190cb64286afc1b373f16010d0feb (patch) | |
tree | b6815a6debc9b9589145cc12f192b6dd83b3f49e /cpp/src/Ice/LocatorInfo.cpp | |
parent | Revert "Reverted previous double-underscore changes in IceUtil classes" (diff) | |
download | ice-a9207c4a7e8190cb64286afc1b373f16010d0feb.tar.bz2 ice-a9207c4a7e8190cb64286afc1b373f16010d0feb.tar.xz ice-a9207c4a7e8190cb64286afc1b373f16010d0feb.zip |
Revert "Replaced double and triple underscores in C++ by ice-prefixed names"
This reverts commit 91fa99c34d1211d426b24bf68001fc27a87b3f00.
Diffstat (limited to 'cpp/src/Ice/LocatorInfo.cpp')
-rw-r--r-- | cpp/src/Ice/LocatorInfo.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/Ice/LocatorInfo.cpp b/cpp/src/Ice/LocatorInfo.cpp index c80f773799d..74f65e2d808 100644 --- a/cpp/src/Ice/LocatorInfo.cpp +++ b/cpp/src/Ice/LocatorInfo.cpp @@ -351,7 +351,7 @@ IceInternal::LocatorInfo::RequestCallback::response(const LocatorInfoPtr& locato vector<EndpointIPtr> endpoints; if(proxy) { - ReferencePtr r = proxy->iceReference(); + ReferencePtr r = proxy->__reference(); if(_ref->isWellKnown() && !isSupported(_ref->getEncoding(), r->getEncoding())) { // @@ -482,7 +482,7 @@ IceInternal::LocatorInfo::Request::getEndpoints(const ReferencePtr& ref, vector<EndpointIPtr> endpoints; if(_proxy) { - ReferencePtr r = _proxy->iceReference(); + ReferencePtr r = _proxy->__reference(); if(!r->isIndirect()) { endpoints = r->getEndpoints(); @@ -924,7 +924,7 @@ IceInternal::LocatorInfo::finishRequest(const ReferencePtr& ref, const Ice::ObjectPrxPtr& proxy, bool notRegistered) { - if(!proxy || proxy->iceReference()->isIndirect()) + if(!proxy || proxy->__reference()->isIndirect()) { // // Remove the cached references of well-known objects for which we tried @@ -938,9 +938,9 @@ IceInternal::LocatorInfo::finishRequest(const ReferencePtr& ref, if(!ref->isWellKnown()) { - if(proxy && !proxy->iceReference()->isIndirect()) // Cache the adapter endpoints. + if(proxy && !proxy->__reference()->isIndirect()) // Cache the adapter endpoints. { - _table->addAdapterEndpoints(ref->getAdapterId(), proxy->iceReference()->getEndpoints()); + _table->addAdapterEndpoints(ref->getAdapterId(), proxy->__reference()->getEndpoints()); } else if(notRegistered) // If the adapter isn't registered anymore, remove it from the cache. { @@ -953,9 +953,9 @@ IceInternal::LocatorInfo::finishRequest(const ReferencePtr& ref, } else { - if(proxy && !proxy->iceReference()->isWellKnown()) // Cache the well-known object reference. + if(proxy && !proxy->__reference()->isWellKnown()) // Cache the well-known object reference. { - _table->addObjectReference(ref->getIdentity(), proxy->iceReference()); + _table->addObjectReference(ref->getIdentity(), proxy->__reference()); } else if(notRegistered) // If the well-known object isn't registered anymore, remove it from the cache. { |