summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Naming_Service/NS_CosNaming.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/Naming_Service/NS_CosNaming.cpp')
-rw-r--r--TAO/orbsvcs/Naming_Service/NS_CosNaming.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/Naming_Service/NS_CosNaming.cpp b/TAO/orbsvcs/Naming_Service/NS_CosNaming.cpp
index ce135b599ac..6cc90cacb95 100644
--- a/TAO/orbsvcs/Naming_Service/NS_CosNaming.cpp
+++ b/TAO/orbsvcs/Naming_Service/NS_CosNaming.cpp
@@ -23,13 +23,13 @@ NS_IntId::NS_IntId (CORBA::Object_ptr obj,
CosNaming::BindingType type)
: type_ (type)
{
- ref_ = ACE_NESTED_CLASS (CORBA,Object)::_duplicate (obj);
+ ref_ = CORBA::Object::_duplicate (obj);
}
NS_IntId::NS_IntId (const NS_IntId &rhs)
{
type_ = rhs.type_;
- ref_ = ACE_NESTED_CLASS (CORBA,Object)::_duplicate (rhs.ref_);
+ ref_ = CORBA::Object::_duplicate (rhs.ref_);
}
NS_IntId::~NS_IntId (void)
@@ -47,7 +47,7 @@ NS_IntId::operator= (const NS_IntId &rhs)
type_ = rhs.type_;
CORBA::release (ref_);
- ref_ = ACE_NESTED_CLASS (CORBA,Object)::_duplicate (rhs.ref_);
+ ref_ = CORBA::Object::_duplicate (rhs.ref_);
}
NS_ExtId::NS_ExtId (void)