summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h
index 9913cc8c8c9..c9fa2c626bd 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/activate_with_id.h
@@ -20,22 +20,17 @@ void
activate_object_with_id (T * &result,
PortableServer::POA_ptr poa,
PortableServer::ServantBase *servant,
- const FtRtecEventComm::ObjectId &oid
- ACE_ENV_ARG_DECL)
+ const FtRtecEventComm::ObjectId &oid)
{
const PortableServer::ObjectId& id =
reinterpret_cast<const PortableServer::ObjectId&> (oid);
poa->activate_object_with_id(id,
- servant
- ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
+ servant);
CORBA::Object_var object =
- poa->id_to_reference(id
- ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
+ poa->id_to_reference(id);
- result = T::_narrow(object.in() ACE_ENV_ARG_PARAMETER);
+ result = T::_narrow(object.in());
}
TAO_END_VERSIONED_NAMESPACE_DECL