From b11770b30f8b58d20fe2d61846bfa3fc5354ee7e Mon Sep 17 00:00:00 2001 From: Ossama Othman Date: Sat, 8 Dec 2001 21:59:30 +0000 Subject: Merged corba-env-clean branch. --- TAO/orbsvcs/orbsvcs/Notify/Notify_Lookup_Command.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'TAO/orbsvcs/orbsvcs/Notify/Notify_Lookup_Command.cpp') diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_Lookup_Command.cpp b/TAO/orbsvcs/orbsvcs/Notify/Notify_Lookup_Command.cpp index 275be23fff7..b2f1b14b23d 100644 --- a/TAO/orbsvcs/orbsvcs/Notify/Notify_Lookup_Command.cpp +++ b/TAO/orbsvcs/orbsvcs/Notify/Notify_Lookup_Command.cpp @@ -23,7 +23,7 @@ TAO_Notify_Lookup_Command::~TAO_Notify_Lookup_Command () } int -TAO_Notify_Lookup_Command::execute (CORBA::Environment& ACE_TRY_ENV) +TAO_Notify_Lookup_Command::execute (TAO_ENV_SINGLE_ARG_DECL) { // If the event is *not* the special event // send it to the list that matches it. @@ -42,7 +42,7 @@ TAO_Notify_Lookup_Command::execute (CORBA::Environment& ACE_TRY_ENV) if (event_map_->find (this->event_->event_type (), listener_list) == 0) { - listener_list->for_each (this, ACE_TRY_ENV); + listener_list->for_each (this TAO_ENV_ARG_PARAMETER); ACE_CHECK_RETURN (-1); } } @@ -50,7 +50,7 @@ TAO_Notify_Lookup_Command::execute (CORBA::Environment& ACE_TRY_ENV) // if (this->default_subscription_list_->is_empty () == 0) // @@ can't do this test - is_empty is not impl. { - event_map_->default_subscription_list ()->for_each (this, ACE_TRY_ENV); + event_map_->default_subscription_list ()->for_each (this TAO_ENV_ARG_PARAMETER); ACE_CHECK_RETURN (-1); } @@ -58,9 +58,9 @@ TAO_Notify_Lookup_Command::execute (CORBA::Environment& ACE_TRY_ENV) } void -TAO_Notify_Lookup_Command::work (TAO_Notify_EventListener* event_listener, - CORBA::Environment &ACE_TRY_ENV) +TAO_Notify_Lookup_Command::work (TAO_Notify_EventListener* event_listener + TAO_ENV_ARG_DECL) { - this->event_processor_->evaluate_listener_filter (this->event_, event_listener, 1, ACE_TRY_ENV); + this->event_processor_->evaluate_listener_filter (this->event_, event_listener, 1 TAO_ENV_ARG_PARAMETER); // Note the last parameter, we want the parent filter to be evaluated. } -- cgit v1.2.1