summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple
diff options
context:
space:
mode:
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_;