summaryrefslogtreecommitdiff
path: root/TAO/tests/ORB_init/Portspan/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ORB_init/Portspan/server.cpp')
-rw-r--r--TAO/tests/ORB_init/Portspan/server.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/ORB_init/Portspan/server.cpp b/TAO/tests/ORB_init/Portspan/server.cpp
index 1c3be70c827..e93543879ed 100644
--- a/TAO/tests/ORB_init/Portspan/server.cpp
+++ b/TAO/tests/ORB_init/Portspan/server.cpp
@@ -9,30 +9,30 @@ main( int argc, char *argv[] )
{
CORBA::ORB_var orb = CORBA::ORB_init(argc, argv, ""
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
CORBA::Object_var obj = orb->resolve_initial_references("RootPOA"
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
PortableServer::POA_var poa = PortableServer::POA::_narrow(obj.in()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
- PortableServer::POAManager_var man = poa->the_POAManager(TAO_ENV_SINGLE_ARG_PARAMETER);
+ PortableServer::POAManager_var man = poa->the_POAManager(ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
- man->activate(TAO_ENV_SINGLE_ARG_PARAMETER);
+ man->activate(ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
simple_i simp;
PortableServer::ObjectId_var objId = poa->activate_object(&simp
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
- orb->run(TAO_ENV_SINGLE_ARG_PARAMETER);
+ orb->run(ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}