summaryrefslogtreecommitdiff
path: root/TAO/examples/RTCORBA/Activity/Builder.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-01 19:23:57 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-01 19:23:57 +0000
commit53788b2664b10b25d492ab9d22af8c0b1241af3e (patch)
treed2ec3bc0e277617dd9e47338102ef213e26c6c2b /TAO/examples/RTCORBA/Activity/Builder.cpp
parent9e66a67f2529381bd470cf89e36594deaa137be0 (diff)
downloadATCD-53788b2664b10b25d492ab9d22af8c0b1241af3e.tar.gz
Wed Oct 1 19:23:45 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/examples/RTCORBA/Activity/Builder.cpp')
-rw-r--r--TAO/examples/RTCORBA/Activity/Builder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/examples/RTCORBA/Activity/Builder.cpp b/TAO/examples/RTCORBA/Activity/Builder.cpp
index 6b5e0bfad93..0370dae1ff3 100644
--- a/TAO/examples/RTCORBA/Activity/Builder.cpp
+++ b/TAO/examples/RTCORBA/Activity/Builder.cpp
@@ -35,7 +35,7 @@ Builder::init (int argc, ACE_TCHAR *argv[])
while (arg_shifter.is_anything_left ())
{
- if (0 != (current_arg = arg_shifter.get_the_parameter ("-TaskCount")))
+ if (0 != (current_arg = arg_shifter.get_the_parameter (ACE_TEXT("-TaskCount"))))
{
task_count_ = ACE_OS::atoi (current_arg);
ACE_NEW_RETURN (task_list_, Periodic_Task*[task_count_], -1);
@@ -44,7 +44,7 @@ Builder::init (int argc, ACE_TCHAR *argv[])
0);
arg_shifter.consume_arg ();
}
- if (0 != (current_arg = arg_shifter.get_the_parameter ("-JobCount")))
+ if (0 != (current_arg = arg_shifter.get_the_parameter (ACE_TEXT("-JobCount"))))
{
job_count_ = ACE_OS::atoi (current_arg);
ACE_NEW_RETURN (job_list_, Job_i*[job_count_], -1);
@@ -53,7 +53,7 @@ Builder::init (int argc, ACE_TCHAR *argv[])
0);
arg_shifter.consume_arg ();
}
- if (0 != (current_arg = arg_shifter.get_the_parameter ("-POACount")))
+ if (0 != (current_arg = arg_shifter.get_the_parameter (ACE_TEXT("-POACount"))))
{
poa_count_ = ACE_OS::atoi (current_arg);
ACE_NEW_RETURN (poa_list_, POA_Holder*[poa_count_], -1);