summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/fixed_array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Param_Test/fixed_array.cpp')
-rw-r--r--TAO/tests/Param_Test/fixed_array.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/Param_Test/fixed_array.cpp b/TAO/tests/Param_Test/fixed_array.cpp
index b34cdbd5e46..02eb437af97 100644
--- a/TAO/tests/Param_Test/fixed_array.cpp
+++ b/TAO/tests/Param_Test/fixed_array.cpp
@@ -45,14 +45,14 @@ Test_Fixed_Array::opname (void) const
void
Test_Fixed_Array::dii_req_invoke (CORBA::Request *req
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
req->add_in_arg ("s1") <<= Param_Test::Fixed_Array_forany (this->in_);
req->add_inout_arg ("s2") <<= Param_Test::Fixed_Array_forany (this->inout_);
req->add_out_arg ("s3") <<= Param_Test::Fixed_Array_forany (this->out_);
req->set_return_type (Param_Test::_tc_Fixed_Array);
- req->invoke (TAO_ENV_SINGLE_ARG_PARAMETER);
+ req->invoke (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
Param_Test::Fixed_Array_forany forany;
@@ -60,13 +60,13 @@ Test_Fixed_Array::dii_req_invoke (CORBA::Request *req
Param_Test::Fixed_Array_copy (this->ret_, forany.in ());
CORBA::NamedValue_ptr arg2 =
- req->arguments ()->item (1 TAO_ENV_ARG_PARAMETER);
+ req->arguments ()->item (1 ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
*arg2->value () >>= forany;
Param_Test::Fixed_Array_copy (this->inout_, forany.in ());
CORBA::NamedValue_ptr arg3 =
- req->arguments ()->item (2 TAO_ENV_ARG_PARAMETER);
+ req->arguments ()->item (2 ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
Param_Test::Fixed_Array_forany out_any (this->out_);
*arg3->value () >>= forany;
@@ -75,7 +75,7 @@ Test_Fixed_Array::dii_req_invoke (CORBA::Request *req
int
Test_Fixed_Array::init_parameters (Param_Test_ptr /*objref*/
- TAO_ENV_ARG_DECL_NOT_USED/*env*/)
+ ACE_ENV_ARG_DECL_NOT_USED/*env*/)
{
Generator *gen = GENERATOR::instance (); // value generator
@@ -107,14 +107,14 @@ Test_Fixed_Array::reset_parameters (void)
int
Test_Fixed_Array::run_sii_test (Param_Test_ptr objref
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
ACE_TRY
{
this->ret_ = objref->test_fixed_array (this->in_,
this->inout_,
this->out_
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
return 0;