diff options
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 445fe90237d..a369a9b1f16 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -768,7 +768,7 @@ IceDelegateM::Ice::Object::~Object() { if(__connection) { - __connection->decUsageCount(); + __connection->decProxyCount(); } } @@ -901,12 +901,12 @@ IceDelegateM::Ice::Object::__copyFrom(const ::IceInternal::Handle< ::IceDelegate if(from->__connection) { - from->__connection->incUsageCount(); + from->__connection->incProxyCount(); } if(__connection) { - __connection->decUsageCount(); + __connection->decProxyCount(); } __connection = from->__connection; @@ -954,7 +954,7 @@ IceDelegateM::Ice::Object::setup(const ReferencePtr& ref) } assert(p != connections.end()); __connection = *p; - __connection->incUsageCount(); + __connection->incProxyCount(); } else { @@ -994,7 +994,7 @@ IceDelegateM::Ice::Object::setup(const ReferencePtr& ref) OutgoingConnectionFactoryPtr factory = __reference->instance->outgoingConnectionFactory(); __connection = factory->create(filteredEndpoints); assert(__connection); - __connection->incUsageCount(); + __connection->incProxyCount(); } catch(const LocalException& ex) { |