summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp')
-rw-r--r--TAO/orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp b/TAO/orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp
index e17ff769ddf..68b32004c1c 100644
--- a/TAO/orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp
+++ b/TAO/orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp
@@ -15,7 +15,7 @@ ACE_RCSID (ORT,
void
Server_IORInterceptor_ORBInitializer::pre_init (
PortableInterceptor::ORBInitInfo_ptr /* info */
- TAO_ENV_ARG_DECL_NOT_USED)
+ ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
@@ -23,17 +23,17 @@ Server_IORInterceptor_ORBInitializer::pre_init (
void
Server_IORInterceptor_ORBInitializer::post_init (
PortableInterceptor::ORBInitInfo_ptr info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
CORBA::Object_var obj =
info->resolve_initial_references ("Gateway_Object_Factory"
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
/// Narrow it down correctly.
Gateway::Object_Factory_var gateway_object_factory =
- Gateway::Object_Factory::_narrow (obj.in () TAO_ENV_ARG_PARAMETER);
+ Gateway::Object_Factory::_narrow (obj.in () ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
/// Check for nil reference
@@ -56,6 +56,6 @@ Server_IORInterceptor_ORBInitializer::post_init (
gateway;
info->add_ior_interceptor (ior_interceptor.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}