summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 11:01:39 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 11:01:39 +0000
commit9125fa9a52b84bc4af871469193d9420712cec67 (patch)
tree9376b5d95bc33cea01f4d52fff2e19b2ade9718f /TAO/orbsvcs/tests
parent051b14759f1050739691464addee4f52cde39599 (diff)
downloadATCD-9125fa9a52b84bc4af871469193d9420712cec67.tar.gz
ChangeLogTag: Wed Apr 19 07:44:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs/tests')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Component_Switching/distributer.cpp2
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Component_Switching/receiver.cpp2
-rw-r--r--TAO/orbsvcs/tests/AVStreams/Component_Switching/sender.cpp2
-rw-r--r--TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp8
4 files changed, 7 insertions, 7 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/Component_Switching/distributer.cpp b/TAO/orbsvcs/tests/AVStreams/Component_Switching/distributer.cpp
index ba747961853..bcc4f71458d 100644
--- a/TAO/orbsvcs/tests/AVStreams/Component_Switching/distributer.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/Component_Switching/distributer.cpp
@@ -106,7 +106,7 @@ Distributer_Receiver_StreamEndPoint::handle_connection_requested (AVStreams::flo
i++)
{
TAO_Forward_FlowSpec_Entry entry;
- entry.parse (flowspec[i].in ());
+ entry.parse (flowspec[i]);
//if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
diff --git a/TAO/orbsvcs/tests/AVStreams/Component_Switching/receiver.cpp b/TAO/orbsvcs/tests/AVStreams/Component_Switching/receiver.cpp
index 36aec050841..573fdb12f34 100644
--- a/TAO/orbsvcs/tests/AVStreams/Component_Switching/receiver.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/Component_Switching/receiver.cpp
@@ -60,7 +60,7 @@ Receiver_StreamEndPoint::handle_connection_requested (AVStreams::flowSpec &flows
i++)
{
TAO_Forward_FlowSpec_Entry entry;
- entry.parse (flowspec[i].in ());
+ entry.parse (flowspec[i]);
ACE_DEBUG ((LM_DEBUG,
"Handle Conection Requested flowname %s \n",
diff --git a/TAO/orbsvcs/tests/AVStreams/Component_Switching/sender.cpp b/TAO/orbsvcs/tests/AVStreams/Component_Switching/sender.cpp
index 53d0cbb4247..34c878c4584 100644
--- a/TAO/orbsvcs/tests/AVStreams/Component_Switching/sender.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/Component_Switching/sender.cpp
@@ -109,7 +109,7 @@ Sender_StreamEndPoint::handle_preconnect (AVStreams::flowSpec &flowspec)
i++)
{
TAO_Forward_FlowSpec_Entry entry;
- entry.parse (flowspec[i].in ());
+ entry.parse (flowspec[i]);
ACE_CString flowname (entry.flowname ());
diff --git a/TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp b/TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp
index 40144dd1036..6a3c7f89e53 100644
--- a/TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp
+++ b/TAO/orbsvcs/tests/Bug_1393_Regression/client.cpp
@@ -21,9 +21,9 @@ int main(int argc, char** argv)
CORBA::ContainedSeq_var interfaces =
- repo_->contents ( CORBA::dk_Interface, // Any type of contained object.
- 1 // Exclude parents of interfaces.
- ACE_ENV_ARG_PARAMETER);
+ repo_->contents (CORBA::dk_Interface, // Any type of contained object.
+ 1 // Exclude parents of interfaces.
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
CORBA::ULong length = interfaces->length ();
@@ -37,7 +37,7 @@ int main(int argc, char** argv)
CORBA::ULong first_one = 0;
CORBA::InterfaceDef_var the_interface =
- CORBA::InterfaceDef::_narrow (interfaces[first_one].in ()
+ CORBA::InterfaceDef::_narrow (interfaces[first_one]
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;