summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/bd_short_seq.cpp
diff options
context:
space:
mode:
authorokellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-29 20:21:11 +0000
committerokellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-29 20:21:11 +0000
commit56681ffa90714cf82c32e907c0f80cea75166740 (patch)
treefd798ba5478a08b4b6f842cb8515ed9776861f5f /TAO/tests/Param_Test/bd_short_seq.cpp
parent6b5e98c78a7f66029147fad41e2e75cea35854aa (diff)
downloadATCD-56681ffa90714cf82c32e907c0f80cea75166740.tar.gz
ChangeLogTag:Tue Jan 29 21:09:12 2002 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
Diffstat (limited to 'TAO/tests/Param_Test/bd_short_seq.cpp')
-rw-r--r--TAO/tests/Param_Test/bd_short_seq.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/Param_Test/bd_short_seq.cpp b/TAO/tests/Param_Test/bd_short_seq.cpp
index 21836ba0f74..e6a6f205546 100644
--- a/TAO/tests/Param_Test/bd_short_seq.cpp
+++ b/TAO/tests/Param_Test/bd_short_seq.cpp
@@ -48,14 +48,14 @@ Test_Bounded_Short_Sequence::opname (void) const
void
Test_Bounded_Short_Sequence::dii_req_invoke (CORBA::Request *req
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
req->add_in_arg ("s1") <<= this->in_.in ();
req->add_inout_arg ("s2") <<= this->inout_.in ();
req->add_out_arg ("s3") <<= this->out_.in ();
req->set_return_type (Param_Test::_tc_Bounded_Short_Seq);
- req->invoke (TAO_ENV_SINGLE_ARG_PARAMETER);
+ req->invoke (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
Param_Test::Bounded_Short_Seq *tmp;
@@ -63,13 +63,13 @@ Test_Bounded_Short_Sequence::dii_req_invoke (CORBA::Request *req
this->ret_ = new Param_Test::Bounded_Short_Seq (*tmp);
CORBA::NamedValue_ptr arg2 =
- req->arguments ()->item (1 TAO_ENV_ARG_PARAMETER);
+ req->arguments ()->item (1 ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
*arg2->value () >>= tmp;
this->inout_ = new Param_Test::Bounded_Short_Seq (*tmp);
CORBA::NamedValue_ptr arg3 =
- req->arguments ()->item (2 TAO_ENV_ARG_PARAMETER);
+ req->arguments ()->item (2 ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
*arg3->value () >>= tmp;
this->out_ = new Param_Test::Bounded_Short_Seq (*tmp);
@@ -77,7 +77,7 @@ Test_Bounded_Short_Sequence::dii_req_invoke (CORBA::Request *req
int
Test_Bounded_Short_Sequence::init_parameters (Param_Test_ptr /*objref*/
- TAO_ENV_ARG_DECL_NOT_USED /*env*/)
+ ACE_ENV_ARG_DECL_NOT_USED /*env*/)
{
// ACE_UNUSED_ARG (objref);
@@ -119,7 +119,7 @@ Test_Bounded_Short_Sequence::reset_parameters (void)
int
Test_Bounded_Short_Sequence::run_sii_test (Param_Test_ptr objref
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
ACE_TRY
{
@@ -128,7 +128,7 @@ Test_Bounded_Short_Sequence::run_sii_test (Param_Test_ptr objref
this->ret_ = objref->test_bounded_short_sequence (this->in_.in (),
this->inout_.inout (),
out
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
return 0;