diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2008-09-29 08:02:27 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2008-09-29 08:02:27 +0000 |
commit | 3ccd3caa66a249f02abfe439d4bc44bc855cfb99 (patch) | |
tree | 3bb6590023a07cdf663eeec501b54c46f26c9e21 /TAO/orbsvcs/tests/Notify/Reconnecting | |
parent | 51ddf0daf03683512eb41a0e7f7a7823ef10f2eb (diff) | |
download | ATCD-3ccd3caa66a249f02abfe439d4bc44bc855cfb99.tar.gz |
Mon Sep 29 07:59:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/Reconnecting')
4 files changed, 8 insertions, 8 deletions
diff --git a/TAO/orbsvcs/tests/Notify/Reconnecting/Consumer.cpp b/TAO/orbsvcs/tests/Notify/Reconnecting/Consumer.cpp index de2e3a3eff2..3c9f15e0e97 100644 --- a/TAO/orbsvcs/tests/Notify/Reconnecting/Consumer.cpp +++ b/TAO/orbsvcs/tests/Notify/Reconnecting/Consumer.cpp @@ -798,7 +798,7 @@ Consumer_Main::parse_args (int argc, ACE_TCHAR *argv[]) } int -Consumer_Main::parse_single_arg (int argc, char *argv[]) +Consumer_Main::parse_single_arg (int argc, ACE_TCHAR *argv[]) { int consumed = 0; if (ACE_OS::strcasecmp (argv[0], "-any") == 0) @@ -873,7 +873,7 @@ void Consumer_Main::usage(FILE * out)const //FUZZ: enable check_for_lack_ACE_OS } -int Consumer_Main::init (int argc, char *argv[]) +int Consumer_Main::init (int argc, ACE_TCHAR *argv[]) { this->orb_ = CORBA::ORB_init (argc, argv); diff --git a/TAO/orbsvcs/tests/Notify/Reconnecting/Consumer.h b/TAO/orbsvcs/tests/Notify/Reconnecting/Consumer.h index c508444f5e6..21dfc9e8ac9 100644 --- a/TAO/orbsvcs/tests/Notify/Reconnecting/Consumer.h +++ b/TAO/orbsvcs/tests/Notify/Reconnecting/Consumer.h @@ -169,9 +169,9 @@ class Consumer_Main ~Consumer_Main (); int parse_args (int argc, ACE_TCHAR *argv[]); - int parse_single_arg (int argc, char *argv[]); + int parse_single_arg (int argc, ACE_TCHAR *argv[]); - int init (int argc, char *argv[]); + int init (int argc, ACE_TCHAR *argv[]); int run (void); int fini (void); void usage (FILE * log) const; diff --git a/TAO/orbsvcs/tests/Notify/Reconnecting/Supplier.cpp b/TAO/orbsvcs/tests/Notify/Reconnecting/Supplier.cpp index 00a8ada8858..25293432de5 100644 --- a/TAO/orbsvcs/tests/Notify/Reconnecting/Supplier.cpp +++ b/TAO/orbsvcs/tests/Notify/Reconnecting/Supplier.cpp @@ -241,7 +241,7 @@ Supplier_Main::parse_args (int argc, ACE_TCHAR *argv[]) } int -Supplier_Main::parse_single_arg (int argc, char *argv[]) +Supplier_Main::parse_single_arg (int argc, ACE_TCHAR *argv[]) { int consumed = 0; if (ACE_OS::strcasecmp (argv[0], ACE_TEXT ("-v")) == 0) @@ -316,7 +316,7 @@ void Supplier_Main::usage(FILE * log)const //FUZZ: enable check_for_lack_ACE_OS } -int Supplier_Main::init (int argc, char *argv[]) +int Supplier_Main::init (int argc, ACE_TCHAR *argv[]) { this->orb_ = CORBA::ORB_init (argc, argv); diff --git a/TAO/orbsvcs/tests/Notify/Reconnecting/Supplier.h b/TAO/orbsvcs/tests/Notify/Reconnecting/Supplier.h index ec3a3ffd4a4..4f67cb6481e 100644 --- a/TAO/orbsvcs/tests/Notify/Reconnecting/Supplier.h +++ b/TAO/orbsvcs/tests/Notify/Reconnecting/Supplier.h @@ -84,9 +84,9 @@ class Supplier_Main ~Supplier_Main (); int parse_args (int argc, ACE_TCHAR *argv[]); - int parse_single_arg (int argc, char *argv[]); + int parse_single_arg (int argc, ACE_TCHAR *argv[]); - int init (int argc, char *argv[]); + int init (int argc, ACE_TCHAR *argv[]); int run (void); int fini (void); void usage (FILE * log) const; |