summaryrefslogtreecommitdiff
path: root/TAO/tests/QtTests/client.cpp
diff options
context:
space:
mode:
authorPhil Mesnier <mesnier_p@ociweb.com>2013-06-05 20:13:29 +0000
committerPhil Mesnier <mesnier_p@ociweb.com>2013-06-05 20:13:29 +0000
commit3b2de43a9b7295745ee3be244d8d130e96f365ef (patch)
tree3d7fe111a3d424240451a03d723aac045d54c133 /TAO/tests/QtTests/client.cpp
parente8acb51bcc34340bfbd297c0daedce3e357c4ca9 (diff)
downloadATCD-3b2de43a9b7295745ee3be244d8d130e96f365ef.tar.gz
Wed Jun 5 20:11:23 UTC 2013 Phil Mesnier <mesnier_p@ociweb.com>
* examples/AMI/FL_Callback/progress.cpp: * orbsvcs/tests/ImplRepo/ping_interrupt/server.cpp: * performance-tests/Cubit/TAO/MT_Cubit/server.cpp: * tests/FL_Cube/server.cpp: * tests/QtTests/client.cpp: * tests/QtTests/server.cpp: Fixed wchar build compile errors
Diffstat (limited to 'TAO/tests/QtTests/client.cpp')
-rw-r--r--TAO/tests/QtTests/client.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/TAO/tests/QtTests/client.cpp b/TAO/tests/QtTests/client.cpp
index d4f549290d7..55261dcb1a1 100644
--- a/TAO/tests/QtTests/client.cpp
+++ b/TAO/tests/QtTests/client.cpp
@@ -2,6 +2,7 @@
#include "testC.h"
#include "ace/Get_Opt.h"
+#include "ace/Argv_Type_Converter.h"
#include "tao/QtResource/QtResource_Loader.h"
#include "client.h"
@@ -9,9 +10,10 @@
int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
- QApplication app (argc, argv);
- TAO::QtResource_Loader qt_resources (&app);
+ ACE_Argv_Type_Converter ct (argc, argv);
+ QApplication app (argc, ct.get_ASCII_argv ());
+ TAO::QtResource_Loader qt_resources (&app);
try
{