summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer_T.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer_T.cpp18
1 files changed, 7 insertions, 11 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer_T.cpp b/TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer_T.cpp
index e89976a1c6e..bd274580332 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer_T.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/ProxyConsumer_T.cpp
@@ -22,10 +22,9 @@ TAO_Notify_ProxyConsumer_T<SERVANT_TYPE>::~TAO_Notify_ProxyConsumer_T ()
template <class SERVANT_TYPE> void
TAO_Notify_ProxyConsumer_T<SERVANT_TYPE>::admin_types_changed (const CosNotification::EventTypeSeq & added,
- const CosNotification::EventTypeSeq & removed
- ACE_ENV_ARG_DECL)
+ const CosNotification::EventTypeSeq & removed)
{
- this->offer_change (added, removed ACE_ENV_ARG_PARAMETER);
+ this->offer_change (added, removed);
}
template <class SERVANT_TYPE> CosNotifyChannelAdmin::SupplierAdmin_ptr
@@ -38,13 +37,13 @@ TAO_Notify_ProxyConsumer_T<SERVANT_TYPE>::MyAdmin (void)
CORBA::Object_var object = this->supplier_admin().ref ();
- ret = CosNotifyChannelAdmin::SupplierAdmin::_narrow (object.in () ACE_ENV_ARG_PARAMETER);
+ ret = CosNotifyChannelAdmin::SupplierAdmin::_narrow (object.in ());
return ret._retn ();
}
template <class SERVANT_TYPE> void
-TAO_Notify_ProxyConsumer_T<SERVANT_TYPE>::offer_change (const CosNotification::EventTypeSeq & added, const CosNotification::EventTypeSeq & removed ACE_ENV_ARG_DECL)
+TAO_Notify_ProxyConsumer_T<SERVANT_TYPE>::offer_change (const CosNotification::EventTypeSeq & added, const CosNotification::EventTypeSeq & removed)
ACE_THROW_SPEC ((
CORBA::SystemException,
CosNotifyComm::InvalidEventType
@@ -62,19 +61,16 @@ TAO_Notify_ProxyConsumer_T<SERVANT_TYPE>::offer_change (const CosNotification::E
this->event_manager().offer_change (this,
seq_added,
- seq_removed
- ACE_ENV_ARG_PARAMETER);
+ seq_removed);
}
template <class SERVANT_TYPE> CosNotification::EventTypeSeq*
TAO_Notify_ProxyConsumer_T<SERVANT_TYPE>::obtain_subscription_types (
- CosNotifyChannelAdmin::ObtainInfoMode mode
- ACE_ENV_ARG_DECL)
+ CosNotifyChannelAdmin::ObtainInfoMode mode)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return
- this->obtain_types (mode, this->event_manager().subscription_types ()
- ACE_ENV_ARG_PARAMETER);
+ this->obtain_types (mode, this->event_manager().subscription_types ());
}
TAO_END_VERSIONED_NAMESPACE_DECL