summaryrefslogtreecommitdiff
path: root/TAO/examples/Persistent_Grid/Persistent_Client_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Persistent_Grid/Persistent_Client_i.cpp')
-rw-r--r--TAO/examples/Persistent_Grid/Persistent_Client_i.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/examples/Persistent_Grid/Persistent_Client_i.cpp b/TAO/examples/Persistent_Grid/Persistent_Client_i.cpp
index 7aeb5702ea6..3eac4a3d7a2 100644
--- a/TAO/examples/Persistent_Grid/Persistent_Client_i.cpp
+++ b/TAO/examples/Persistent_Grid/Persistent_Client_i.cpp
@@ -58,14 +58,14 @@ Persistent_Client_i::run (const char *name,
if (this->parse_args (argc, argv) == -1)
return -1;
- TAO_ENV_DECLARE_NEW_ENV;
+ ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
// Make the Grid.
Grid_ptr grid = client->make_grid (width_,
height_
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
ACE_DEBUG ((LM_DEBUG,
@@ -78,7 +78,7 @@ Persistent_Client_i::run (const char *name,
{
CORBA::Long ret_val = grid->get (index_,
ctr
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
ACE_DEBUG ((LM_DEBUG,
@@ -87,12 +87,12 @@ Persistent_Client_i::run (const char *name,
}
if (client.shutdown () == 1) {
- client->shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
+ client->shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
if (this->remove_ == 1) {
- client->cleanup (TAO_ENV_SINGLE_ARG_PARAMETER);
+ client->cleanup (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
}