summaryrefslogtreecommitdiff
path: root/TAO/tao/Valuetype/ValueFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Valuetype/ValueFactory.cpp')
-rw-r--r--TAO/tao/Valuetype/ValueFactory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Valuetype/ValueFactory.cpp b/TAO/tao/Valuetype/ValueFactory.cpp
index d65e09ed1c0..ad7003800d2 100644
--- a/TAO/tao/Valuetype/ValueFactory.cpp
+++ b/TAO/tao/Valuetype/ValueFactory.cpp
@@ -27,7 +27,7 @@ CORBA::remove_ref (CORBA::ValueFactoryBase *val)
// ===========================================================
CORBA::ValueFactoryBase::ValueFactoryBase (void)
- : _tao_reference_count_ (1)
+ : refcount_ (1)
{
}
@@ -38,13 +38,13 @@ CORBA::ValueFactoryBase::~ValueFactoryBase (void)
void
CORBA::ValueFactoryBase::_add_ref (void)
{
- ++this->_tao_reference_count_;
+ ++this->refcount_;
}
void
CORBA::ValueFactoryBase::_remove_ref (void)
{
- CORBA::ULong const new_count = --this->_tao_reference_count_;
+ CORBA::ULong const new_count = --this->refcount_;
if (new_count == 0)
delete this;