summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-09-29 07:38:38 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-09-29 07:38:38 +0000
commit1f7a15edf00b6e23dace417f1c9c612c55e04237 (patch)
tree222525ce16a77bf9cb2714ae2b6bcb602233dd29 /TAO/examples/Simple
parent36e3633c420fb3cf854448215ef80b8e09a5916b (diff)
downloadATCD-1f7a15edf00b6e23dace417f1c9c612c55e04237.tar.gz
Mon Sep 29 07:37:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/examples/Simple')
-rw-r--r--TAO/examples/Simple/Simple_util.cpp2
-rw-r--r--TAO/examples/Simple/Simple_util.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/examples/Simple/Simple_util.cpp b/TAO/examples/Simple/Simple_util.cpp
index 3f1d450c925..3b7bf36289a 100644
--- a/TAO/examples/Simple/Simple_util.cpp
+++ b/TAO/examples/Simple/Simple_util.cpp
@@ -356,7 +356,7 @@ Client<INTERFACE_OBJECT, Var>::~Client (void)
template <class INTERFACE_OBJECT, class Var> int
Client<INTERFACE_OBJECT, Var>::init (const char *name,
int argc,
- char **argv)
+ ACE_TCHAR **argv)
{
this->argc_ = argc;
this->argv_ = argv;
diff --git a/TAO/examples/Simple/Simple_util.h b/TAO/examples/Simple/Simple_util.h
index 6c43056c84d..a03e5d8fe1d 100644
--- a/TAO/examples/Simple/Simple_util.h
+++ b/TAO/examples/Simple/Simple_util.h
@@ -91,7 +91,7 @@ protected:
int argc_;
// Number of command line arguments.
- char **argv_;
+ ACE_TCHAR **argv_;
// The command line arguments.
};
@@ -146,7 +146,7 @@ protected:
int argc_;
// # of arguments on the command line.
- char **argv_;
+ ACE_TCHAR **argv_;
// arguments from command line.
char *ior_;