diff options
author | wilson_d <wilson_d@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-08-30 19:29:08 +0000 |
---|---|---|
committer | wilson_d <wilson_d@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-08-30 19:29:08 +0000 |
commit | 28881544612e0432d9c0c8a2f62daf95b9544210 (patch) | |
tree | 0afd5c9ebd5c6bb44501bc119524f754c59ceee6 /TAO/interop-tests | |
parent | 7910bb2de90e97a3256fcfa6ebd7d2a6ec9fa63a (diff) | |
download | ATCD-28881544612e0432d9c0c8a2f62daf95b9544210.tar.gz |
ChangeLogTag: Mon Aug 30 14:24:20 2004 Dale Wilson <wilson_d@ociweb.com>
Diffstat (limited to 'TAO/interop-tests')
-rw-r--r-- | TAO/interop-tests/wchar/interop_wchar_i.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/interop-tests/wchar/interop_wchar_i.cpp b/TAO/interop-tests/wchar/interop_wchar_i.cpp index f69e9553565..fe438cfcc3e 100644 --- a/TAO/interop-tests/wchar/interop_wchar_i.cpp +++ b/TAO/interop-tests/wchar/interop_wchar_i.cpp @@ -164,11 +164,11 @@ interop_WChar_Passer_i::wunion_to_server (const interop::wunion & test, { switch (test._d()) { case interop::is_wchar : - return this->wchar_to_server (test.u_char(),key); + return this->wchar_to_server (test.u_char(),key ACE_ENV_ARG_PARAMETER); case interop::is_wstring : - return this->wstring_to_server (test.u_string(),key); + return this->wstring_to_server (test.u_string(),key ACE_ENV_ARG_PARAMETER); case interop::is_warray : - return this->warray_to_server (test.u_array(),key); + return this->warray_to_server (test.u_array(),key ACE_ENV_ARG_PARAMETER); default: /*return 0*/; } @@ -210,15 +210,15 @@ interop_WChar_Passer_i::any_to_server (const CORBA::Any &test, if (test >>= CORBA::Any::to_wchar(wc)) { - return this->wchar_to_server(wc,key); + return this->wchar_to_server(wc,key ACE_ENV_ARG_PARAMETER); } else if (test >>= ws) { - return this->wstring_to_server (ws,key); + return this->wstring_to_server (ws,key ACE_ENV_ARG_PARAMETER); } else if (test >>= forany) { - return this->warray_to_server (forany.in(),key); + return this->warray_to_server (forany.in(),key ACE_ENV_ARG_PARAMETER); } return 0; } |