summaryrefslogtreecommitdiff
path: root/TAO/tao/Policy_Validator.cpp
diff options
context:
space:
mode:
authorokellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-29 20:21:11 +0000
committerokellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-29 20:21:11 +0000
commit15f9b16afed320b4e581b8f61fee7d7fbf1aa9a8 (patch)
treefd798ba5478a08b4b6f842cb8515ed9776861f5f /TAO/tao/Policy_Validator.cpp
parent5e12d6686388ccadee1714b94ddee0cce6587bfd (diff)
downloadATCD-15f9b16afed320b4e581b8f61fee7d7fbf1aa9a8.tar.gz
ChangeLogTag:Tue Jan 29 21:09:12 2002 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
Diffstat (limited to 'TAO/tao/Policy_Validator.cpp')
-rw-r--r--TAO/tao/Policy_Validator.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tao/Policy_Validator.cpp b/TAO/tao/Policy_Validator.cpp
index 5b0c68b6457..87d6e087573 100644
--- a/TAO/tao/Policy_Validator.cpp
+++ b/TAO/tao/Policy_Validator.cpp
@@ -32,28 +32,28 @@ TAO_Policy_Validator::add_validator (TAO_Policy_Validator *validator)
void
TAO_Policy_Validator::validate (TAO_Policy_Set &policies
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
- this->validate_impl (policies TAO_ENV_ARG_PARAMETER);
+ this->validate_impl (policies ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
if (this->next_ != 0)
{
- this->next_->validate (policies TAO_ENV_ARG_PARAMETER);
+ this->next_->validate (policies ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
}
void
TAO_Policy_Validator::merge_policies (TAO_Policy_Set &policies
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
- this->merge_policies_impl (policies TAO_ENV_ARG_PARAMETER);
+ this->merge_policies_impl (policies ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
if (this->next_ != 0)
{
- this->next_->merge_policies (policies TAO_ENV_ARG_PARAMETER);
+ this->next_->merge_policies (policies ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
}