diff options
Diffstat (limited to 'TAO/tests/QtTests')
-rw-r--r-- | TAO/tests/QtTests/client.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/QtTests/server.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/QtTests/client.cpp b/TAO/tests/QtTests/client.cpp index 061af3a31b4..0e647960cb1 100644 --- a/TAO/tests/QtTests/client.cpp +++ b/TAO/tests/QtTests/client.cpp @@ -18,7 +18,7 @@ main (int argc, char *argv[]) try { CORBA::ORB_var orb = - CORBA::ORB_init (argc, argv, ""); + CORBA::ORB_init (argc, argv); Client client (orb.in (), app); diff --git a/TAO/tests/QtTests/server.cpp b/TAO/tests/QtTests/server.cpp index 28fef907bfc..a4f68600b63 100644 --- a/TAO/tests/QtTests/server.cpp +++ b/TAO/tests/QtTests/server.cpp @@ -60,7 +60,7 @@ main (int argc, char *argv[]) try { CORBA::ORB_var orb = - CORBA::ORB_init (argc, argv, ""); + CORBA::ORB_init (argc, argv); CORBA::Object_var poa_object = orb->resolve_initial_references ("RootPOA"); |