summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/TypedefDef_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/TypedefDef_i.cpp')
-rw-r--r--TAO/orbsvcs/IFR_Service/TypedefDef_i.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/orbsvcs/IFR_Service/TypedefDef_i.cpp b/TAO/orbsvcs/IFR_Service/TypedefDef_i.cpp
index 859c5fa8359..8884a883e9f 100644
--- a/TAO/orbsvcs/IFR_Service/TypedefDef_i.cpp
+++ b/TAO/orbsvcs/IFR_Service/TypedefDef_i.cpp
@@ -21,16 +21,16 @@ TAO_TypedefDef_i::~TAO_TypedefDef_i (void)
}
CORBA_Contained::Description *
-TAO_TypedefDef_i::describe (TAO_ENV_SINGLE_ARG_DECL)
+TAO_TypedefDef_i::describe (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
TAO_IFR_READ_GUARD_RETURN (0);
- return this->describe_i (TAO_ENV_SINGLE_ARG_PARAMETER);
+ return this->describe_i (ACE_ENV_SINGLE_ARG_PARAMETER);
}
CORBA_Contained::Description *
-TAO_TypedefDef_i::describe_i (TAO_ENV_SINGLE_ARG_DECL)
+TAO_TypedefDef_i::describe_i (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
CORBA_Contained::Description *desc_ptr = 0;
@@ -41,15 +41,15 @@ TAO_TypedefDef_i::describe_i (TAO_ENV_SINGLE_ARG_DECL)
CORBA_Contained::Description_var retval = desc_ptr;
- retval->kind = this->def_kind (TAO_ENV_SINGLE_ARG_PARAMETER);
+ retval->kind = this->def_kind (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
CORBA_TypeDescription td;
ACE_CHECK_RETURN (0);
- td.name = this->name_i (TAO_ENV_SINGLE_ARG_PARAMETER);
+ td.name = this->name_i (ACE_ENV_SINGLE_ARG_PARAMETER);
- td.id = this->id_i (TAO_ENV_SINGLE_ARG_PARAMETER);
+ td.id = this->id_i (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
ACE_TString container_id;
@@ -60,10 +60,10 @@ TAO_TypedefDef_i::describe_i (TAO_ENV_SINGLE_ARG_DECL)
td.defined_in = container_id.c_str ();
- td.version = this->version_i (TAO_ENV_SINGLE_ARG_PARAMETER);
+ td.version = this->version_i (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
- td.type = this->type_i (TAO_ENV_SINGLE_ARG_PARAMETER);
+ td.type = this->type_i (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK_RETURN (0);
retval->value <<= td;