summaryrefslogtreecommitdiff
path: root/TAO/tests/Two_Objects/worker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Two_Objects/worker.cpp')
-rw-r--r--TAO/tests/Two_Objects/worker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Two_Objects/worker.cpp b/TAO/tests/Two_Objects/worker.cpp
index ae0889a419a..b1581d8baa9 100644
--- a/TAO/tests/Two_Objects/worker.cpp
+++ b/TAO/tests/Two_Objects/worker.cpp
@@ -6,7 +6,7 @@
Worker::Worker (CORBA::ORB_ptr orb, int time)
: orb_ (CORBA::ORB::_duplicate (orb)),
- orb_timeout_(time)
+ timeout_(time)
{
}
@@ -17,9 +17,9 @@ Worker::svc (void)
ACE_TRY
{
- ACE_Time_Value tv (orb_timeout_);
+ ACE_Time_Value tv (timeout_);
- // orb times out after <timeout> seconds
+ ///orb times out after <timeout> seconds
this->orb_->run (tv ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
}