diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2009-08-14 13:30:24 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2009-08-14 13:30:24 +0000 |
commit | 0088a940c57b952b4b58a0521e66dc02d4d5d660 (patch) | |
tree | cb81f0b3fe56218541131fadf21573814e90b0a2 /TAO/performance-tests/Protocols | |
parent | 4da426df0afb7491a5c14437b96da3271cf9f594 (diff) | |
download | ATCD-0088a940c57b952b4b58a0521e66dc02d4d5d660.tar.gz |
Fri Aug 14 13:30:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/tutorials/Quoter/AMI/client.cpp
* docs/tutorials/Quoter/On_Demand_Activation/client.cpp
* docs/tutorials/Quoter/Simple/Client/client.cpp
* docs/tutorials/Quoter/Simple/Impl-Repo/client.cpp
* docs/tutorials/Quoter/Simple/Persistent/client.cpp
* examples/Buffered_AMI/client.cpp
* examples/Buffered_Oneways/client.cpp
* performance-tests/Protocols/distributor.cpp
* performance-tests/Protocols/sender.cpp
Removed not needed unicode conversions
* orbsvcs/orbsvcs/IFRService/ArrayDef_i.cpp:
Added missing ACE_TEXT
Diffstat (limited to 'TAO/performance-tests/Protocols')
-rw-r--r-- | TAO/performance-tests/Protocols/distributor.cpp | 2 | ||||
-rw-r--r-- | TAO/performance-tests/Protocols/sender.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/performance-tests/Protocols/distributor.cpp b/TAO/performance-tests/Protocols/distributor.cpp index d57082b9d85..1e3d712d65f 100644 --- a/TAO/performance-tests/Protocols/distributor.cpp +++ b/TAO/performance-tests/Protocols/distributor.cpp @@ -340,7 +340,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[]) root_poa->the_POAManager (); object = - orb->string_to_object (ACE_TEXT_ALWAYS_CHAR (ior)); + orb->string_to_object (ior); test_var receiver = test::_narrow (object.in ()); diff --git a/TAO/performance-tests/Protocols/sender.cpp b/TAO/performance-tests/Protocols/sender.cpp index 150b6449325..7200be1d2d5 100644 --- a/TAO/performance-tests/Protocols/sender.cpp +++ b/TAO/performance-tests/Protocols/sender.cpp @@ -709,7 +709,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[]) mapping_manager->mapping (cnpm); object = - orb->string_to_object (ACE_TEXT_ALWAYS_CHAR (ior)); + orb->string_to_object (ior); test_var test = test::_narrow (object.in ()); |