diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-02 13:41:21 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-02 13:41:21 +0000 |
commit | 2ddcf77aae41fe417d2d5f514bba19865cf232ca (patch) | |
tree | b9a88597b4744600ad655ec067bec21b25bfb728 /TAO/tests | |
parent | 0a8b7ae2ff472669a4c290d05c1326d0235c853b (diff) | |
download | ATCD-2ddcf77aae41fe417d2d5f514bba19865cf232ca.tar.gz |
Diffstat (limited to 'TAO/tests')
-rw-r--r-- | TAO/tests/Collocation/Collocation_Tester.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/File_IO/client.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/File_IO/server.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/Multiple_Inheritance/client.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/POA/Identity/Identity.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/Smart_Proxies/Collocation/Coll_Tester.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tests/Collocation/Collocation_Tester.cpp b/TAO/tests/Collocation/Collocation_Tester.cpp index 0a9a1a942a7..b34b119a72d 100644 --- a/TAO/tests/Collocation/Collocation_Tester.cpp +++ b/TAO/tests/Collocation/Collocation_Tester.cpp @@ -31,7 +31,7 @@ int Collocation_Test::init (int argc, char *argv[]) { // Initialize the ORB. - this->orb_ = CORBA::ORB_init (argc, argv, 0); + this->orb_ = CORBA::ORB_init (argc, argv); int result = this->parse_args (argc, argv); if (result != 0) diff --git a/TAO/tests/File_IO/client.cpp b/TAO/tests/File_IO/client.cpp index cfb213a7855..4a40ea6b316 100644 --- a/TAO/tests/File_IO/client.cpp +++ b/TAO/tests/File_IO/client.cpp @@ -154,7 +154,7 @@ main (int argc, char **argv) try { // Initialize the ORB - orb = CORBA::ORB_init (argc, argv, 0); + orb = CORBA::ORB_init (argc, argv); // Parse the command-line arguments to get the IOR parse_args (argc, argv); diff --git a/TAO/tests/File_IO/server.cpp b/TAO/tests/File_IO/server.cpp index 6099a4ca342..cf5db4c23bc 100644 --- a/TAO/tests/File_IO/server.cpp +++ b/TAO/tests/File_IO/server.cpp @@ -82,7 +82,7 @@ main (int argc, char *argv[]) try { // Initialize the ORB - CORBA::ORB_var orb = CORBA::ORB_init (argc, argv, 0); + CORBA::ORB_var orb = CORBA::ORB_init (argc, argv); int result = parse_args (argc, argv); if (result != 0) diff --git a/TAO/tests/Multiple_Inheritance/client.cpp b/TAO/tests/Multiple_Inheritance/client.cpp index 793dd8553d0..ccac4641b28 100644 --- a/TAO/tests/Multiple_Inheritance/client.cpp +++ b/TAO/tests/Multiple_Inheritance/client.cpp @@ -74,7 +74,7 @@ main (int argc, char **argv) try { // Initialize the ORB - CORBA::ORB_var orb = CORBA::ORB_init (argc, argv, 0); + CORBA::ORB_var orb = CORBA::ORB_init (argc, argv); // Parse the command-line arguments to get the IOR parse_args (argc, argv); diff --git a/TAO/tests/POA/Identity/Identity.cpp b/TAO/tests/POA/Identity/Identity.cpp index 1a2065754ef..336816f9d29 100644 --- a/TAO/tests/POA/Identity/Identity.cpp +++ b/TAO/tests/POA/Identity/Identity.cpp @@ -492,7 +492,7 @@ main (int argc, char **argv) try { - CORBA::ORB_var orb = CORBA::ORB_init (argc, argv, 0); + CORBA::ORB_var orb = CORBA::ORB_init (argc, argv); // Obtain the RootPOA. CORBA::Object_var obj = diff --git a/TAO/tests/Smart_Proxies/Collocation/Coll_Tester.cpp b/TAO/tests/Smart_Proxies/Collocation/Coll_Tester.cpp index 27abe97ce77..6de51e5a705 100644 --- a/TAO/tests/Smart_Proxies/Collocation/Coll_Tester.cpp +++ b/TAO/tests/Smart_Proxies/Collocation/Coll_Tester.cpp @@ -25,7 +25,7 @@ int Collocation_Test::init (int argc, char *argv[]) { // Initialize the ORB. - this->orb_ = CORBA::ORB_init (argc, argv, 0); + this->orb_ = CORBA::ORB_init (argc, argv); int result = this->parse_args (argc, argv); if (result != 0) |