summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Negation_Filter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_Negation_Filter.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Negation_Filter.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Negation_Filter.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Negation_Filter.cpp
index bed3ab7655b..eb79fe48cd5 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Negation_Filter.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Negation_Filter.cpp
@@ -41,14 +41,14 @@ TAO_EC_Negation_Filter::size (void) const
int
TAO_EC_Negation_Filter::filter (const RtecEventComm::EventSet& event,
TAO_EC_QOS_Info& qos_info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
int n =
- this->child_->filter (event, qos_info TAO_ENV_ARG_PARAMETER);
+ this->child_->filter (event, qos_info ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
if (this->parent () != 0 && n == 0)
{
- this->parent ()->push (event, qos_info TAO_ENV_ARG_PARAMETER);
+ this->parent ()->push (event, qos_info ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
}
return 1;
@@ -57,14 +57,14 @@ TAO_EC_Negation_Filter::filter (const RtecEventComm::EventSet& event,
int
TAO_EC_Negation_Filter::filter_nocopy (RtecEventComm::EventSet& event,
TAO_EC_QOS_Info& qos_info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
int n =
- this->child_->filter_nocopy (event, qos_info TAO_ENV_ARG_PARAMETER);
+ this->child_->filter_nocopy (event, qos_info ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
if (this->parent () != 0 && n == 0)
{
- this->parent ()->push_nocopy (event, qos_info TAO_ENV_ARG_PARAMETER);
+ this->parent ()->push_nocopy (event, qos_info ACE_ENV_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
}
return 1;
@@ -73,14 +73,14 @@ TAO_EC_Negation_Filter::filter_nocopy (RtecEventComm::EventSet& event,
void
TAO_EC_Negation_Filter::push (const RtecEventComm::EventSet&,
TAO_EC_QOS_Info&
- TAO_ENV_ARG_DECL_NOT_USED)
+ ACE_ENV_ARG_DECL_NOT_USED)
{
}
void
TAO_EC_Negation_Filter::push_nocopy (RtecEventComm::EventSet&,
TAO_EC_QOS_Info&
- TAO_ENV_ARG_DECL_NOT_USED)
+ ACE_ENV_ARG_DECL_NOT_USED)
{
}
@@ -107,7 +107,7 @@ int
TAO_EC_Negation_Filter::add_dependencies (
const RtecEventComm::EventHeader&,
const TAO_EC_QOS_Info &
- TAO_ENV_ARG_DECL_NOT_USED)
+ ACE_ENV_ARG_DECL_NOT_USED)
{
return 0;
}