diff options
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/lib/Direct_Supplier.cpp')
-rw-r--r-- | TAO/orbsvcs/tests/Notify/lib/Direct_Supplier.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/TAO/orbsvcs/tests/Notify/lib/Direct_Supplier.cpp b/TAO/orbsvcs/tests/Notify/lib/Direct_Supplier.cpp index 5fdf0f3424d..a57d98f22ef 100644 --- a/TAO/orbsvcs/tests/Notify/lib/Direct_Supplier.cpp +++ b/TAO/orbsvcs/tests/Notify/lib/Direct_Supplier.cpp @@ -24,27 +24,26 @@ TAO_Notify_Tests_Direct_Supplier::connect (void) { // Get the POA PortableServer::POA_var poa; - LOOKUP_MANAGER->resolve (poa, this->poa_name_.c_str () ACE_ENV_ARG_PARAMETER); + LOOKUP_MANAGER->resolve (poa, this->poa_name_.c_str ()); // set the POA - this->set_poa (poa.in () ACE_ENV_ARG_PARAMETER); + this->set_poa (poa.in ()); // Get hold of the reference. CosNotifyComm::StructuredPushSupplier_var supplier_ref = this->_this (); // Register the activated object. - LOOKUP_MANAGER->_register (supplier_ref.in (), this->name_.c_str () ACE_ENV_ARG_PARAMETER); + LOOKUP_MANAGER->_register (supplier_ref.in (), this->name_.c_str ()); // Resolve the target object. - LOOKUP_MANAGER->resolve (this->target_object_, this->target_.c_str () ACE_ENV_ARG_PARAMETER); + LOOKUP_MANAGER->resolve (this->target_object_, this->target_.c_str ()); } void -TAO_Notify_Tests_Direct_Supplier::send_event (const CosNotification::StructuredEvent& event - ACE_ENV_ARG_DECL) +TAO_Notify_Tests_Direct_Supplier::send_event (const CosNotification::StructuredEvent& event) { ACE_ASSERT (!CORBA::is_nil (this->target_object_.in ())); - this->target_object_->push_structured_event (event ACE_ENV_ARG_PARAMETER); + this->target_object_->push_structured_event (event); } |