diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-30 04:31:22 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-30 04:31:22 +0000 |
commit | 6d64069608cb5e29a191ed8d2eb4d7e163aa0290 (patch) | |
tree | 9f02216ea2a0aaf7c1404e4f48dcc9e18cf151a6 /TAO/tests/Param_Test/bd_string.cpp | |
parent | e8a745ea70a1df43a209f25c7ecc36a397249c8f (diff) | |
download | ATCD-6d64069608cb5e29a191ed8d2eb4d7e163aa0290.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tests/Param_Test/bd_string.cpp')
-rw-r--r-- | TAO/tests/Param_Test/bd_string.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Param_Test/bd_string.cpp b/TAO/tests/Param_Test/bd_string.cpp index dade766fdfb..d68a4f512fc 100644 --- a/TAO/tests/Param_Test/bd_string.cpp +++ b/TAO/tests/Param_Test/bd_string.cpp @@ -109,15 +109,15 @@ Test_Bounded_String::add_args (CORBA::NVList_ptr param_list, // create the parameters CORBA::Any in_arg (CORBA::_tc_string, &this->in_, - CORBA::B_FALSE); + 0); CORBA::Any inout_arg (CORBA::_tc_string, &this->inout_, - CORBA::B_FALSE); + 0); CORBA::Any out_arg (CORBA::_tc_string, &this->out_, - CORBA::B_FALSE); + 0); // add parameters param_list->add_value ("s1", @@ -138,7 +138,7 @@ Test_Bounded_String::add_args (CORBA::NVList_ptr param_list, // add return value retval->item (0, env)->value ()->replace (CORBA::_tc_string, &this->ret_, - CORBA::B_FALSE, // does not own + 0, // does not own env); return 0; } |