summaryrefslogtreecommitdiff
path: root/TAO/tests/QtTests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-09-16 11:54:19 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-09-16 11:54:19 +0000
commit313939ee0d7df7a6226e1302c22aee4272555e47 (patch)
tree3e27f2c5603085852b0a285c3a4e4a742889f452 /TAO/tests/QtTests
parent7c27ae770cf7974573af5e125f8e3da65a7c914b (diff)
downloadATCD-313939ee0d7df7a6226e1302c22aee4272555e47.tar.gz
Tue Sep 16 11:32:00 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/QtTests')
-rw-r--r--TAO/tests/QtTests/client.cpp2
-rw-r--r--TAO/tests/QtTests/client.h2
-rw-r--r--TAO/tests/QtTests/server.cpp4
3 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/QtTests/client.cpp b/TAO/tests/QtTests/client.cpp
index e3a75ef1345..2c5b48f1abf 100644
--- a/TAO/tests/QtTests/client.cpp
+++ b/TAO/tests/QtTests/client.cpp
@@ -63,7 +63,7 @@ Client::parse_args (int argc,
{
const char *ior = "file://test.ior";
- ACE_Get_Opt get_opts (argc, argv, "k:");
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("k:"));
int c;
while ((c = get_opts ()) != -1)
diff --git a/TAO/tests/QtTests/client.h b/TAO/tests/QtTests/client.h
index 0b1d9be90c4..fedef24e6d1 100644
--- a/TAO/tests/QtTests/client.h
+++ b/TAO/tests/QtTests/client.h
@@ -40,7 +40,7 @@ public:
void show (void);
- void parse_args (int argc, char *argv[]);
+ void parse_args (int argc, ACE_TCHAR *argv[]);
QVBox box_;
// A box widget..
diff --git a/TAO/tests/QtTests/server.cpp b/TAO/tests/QtTests/server.cpp
index d92c8efca5a..a8693102b76 100644
--- a/TAO/tests/QtTests/server.cpp
+++ b/TAO/tests/QtTests/server.cpp
@@ -19,9 +19,9 @@ ACE_RCSID (QtTests, server, "$Id$")
const char *ior_output_file = 0;
int
-parse_args (int argc, char *argv[])
+parse_args (int argc, ACE_TCHAR *argv[])
{
- ACE_Get_Opt get_opts (argc, argv, "o:");
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:"));
int c;
while ((c = get_opts ()) != -1)