diff options
Diffstat (limited to 'cpp/include/Ice/Handle.h')
-rw-r--r-- | cpp/include/Ice/Handle.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/cpp/include/Ice/Handle.h b/cpp/include/Ice/Handle.h index 927ad362b13..59283f07702 100644 --- a/cpp/include/Ice/Handle.h +++ b/cpp/include/Ice/Handle.h @@ -43,7 +43,7 @@ public: if(this->_ptr) { - upCast(this->_ptr)->iceIncRef(); + upCast(this->_ptr)->__incRef(); } } @@ -54,7 +54,7 @@ public: if(this->_ptr) { - upCast(this->_ptr)->iceIncRef(); + upCast(this->_ptr)->__incRef(); } } @@ -65,7 +65,7 @@ public: if(this->_ptr) { - upCast(this->_ptr)->iceIncRef(); + upCast(this->_ptr)->__incRef(); } } @@ -75,7 +75,7 @@ public: if(this->_ptr) { - upCast(this->_ptr)->iceIncRef(); + upCast(this->_ptr)->__incRef(); } } @@ -83,7 +83,7 @@ public: { if(this->_ptr) { - upCast(this->_ptr)->iceDecRef(); + upCast(this->_ptr)->__decRef(); } } @@ -93,7 +93,7 @@ public: { if(p) { - upCast(p)->iceIncRef(); + upCast(p)->__incRef(); } T* ptr = this->_ptr; @@ -101,7 +101,7 @@ public: if(ptr) { - upCast(ptr)->iceDecRef(); + upCast(ptr)->__decRef(); } } return *this; @@ -114,7 +114,7 @@ public: { if(r._ptr) { - upCast(r._ptr)->iceIncRef(); + upCast(r._ptr)->__incRef(); } T* ptr = this->_ptr; @@ -122,7 +122,7 @@ public: if(ptr) { - upCast(ptr)->iceDecRef(); + upCast(ptr)->__decRef(); } } return *this; @@ -135,7 +135,7 @@ public: { if(r._ptr) { - upCast(r._ptr)->iceIncRef(); + upCast(r._ptr)->__incRef(); } T* ptr = this->_ptr; @@ -143,7 +143,7 @@ public: if(ptr) { - upCast(ptr)->iceDecRef(); + upCast(ptr)->__decRef(); } } return *this; @@ -155,7 +155,7 @@ public: { if(r._ptr) { - upCast(r._ptr)->iceIncRef(); + upCast(r._ptr)->__incRef(); } T* ptr = this->_ptr; @@ -163,7 +163,7 @@ public: if(ptr) { - upCast(ptr)->iceDecRef(); + upCast(ptr)->__decRef(); } } return *this; @@ -181,7 +181,7 @@ public: return Handle(dynamic_cast<T*>(p)); } - void iceClearHandleUnsafe() + void __clearHandleUnsafe() { this->_ptr = 0; } |