summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp')
-rw-r--r--TAO/orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/TAO/orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp b/TAO/orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp
index ac48714aae7..f3afd4cf533 100644
--- a/TAO/orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp
+++ b/TAO/orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp
@@ -17,7 +17,7 @@ TAO_Notify_Tests_RT_Test_FilterFactory::~TAO_Notify_Tests_RT_Test_FilterFactory
}
CosNotifyFilter::FilterFactory_ptr
-TAO_Notify_Tests_RT_Test_FilterFactory::create (PortableServer::POA_var& filter_poa ACE_ENV_ARG_DECL)
+TAO_Notify_Tests_RT_Test_FilterFactory::create (PortableServer::POA_var& filter_poa)
{
this->filter_poa_ = filter_poa; // save the filter poa.
@@ -27,7 +27,7 @@ TAO_Notify_Tests_RT_Test_FilterFactory::create (PortableServer::POA_var& filter_
}
CosNotifyFilter::Filter_ptr
-TAO_Notify_Tests_RT_Test_FilterFactory::create_filter (const char *constraint_grammar ACE_ENV_ARG_DECL)
+TAO_Notify_Tests_RT_Test_FilterFactory::create_filter (const char *constraint_grammar)
ACE_THROW_SPEC ((
CORBA::SystemException,
CosNotifyFilter::InvalidGrammar
@@ -53,21 +53,17 @@ TAO_Notify_Tests_RT_Test_FilterFactory::create_filter (const char *constraint_gr
PortableServer::ServantBase_var filter_var (filter);
PortableServer::ObjectId_var oid =
- this->filter_poa_->activate_object (filter
- ACE_ENV_ARG_PARAMETER);
+ this->filter_poa_->activate_object (filter);
CORBA::Object_var obj =
- this->filter_poa_->id_to_reference (oid.in ()
- ACE_ENV_ARG_PARAMETER);
+ this->filter_poa_->id_to_reference (oid.in ());
- return CosNotifyFilter::Filter::_narrow (obj.in ()
- ACE_ENV_ARG_PARAMETER);
+ return CosNotifyFilter::Filter::_narrow (obj.in ());
}
CosNotifyFilter::MappingFilter_ptr
TAO_Notify_Tests_RT_Test_FilterFactory::create_mapping_filter (const char * /*constraint_grammar*/,
const CORBA::Any & /*default_value*/
- ACE_ENV_ARG_DECL
)
ACE_THROW_SPEC ((
CORBA::SystemException,