summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo/Echo_i.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-12 20:09:53 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-03-12 20:09:53 +0000
commit5446ce60d8d79d31ab3d2c3609f257ecc5cdd3b4 (patch)
tree08a760ed4edf92ce78ffad57b43303e89763d86e /TAO/examples/Simple/echo/Echo_i.cpp
parent1913ed9e2c4f6f3d7fbb5b300ce9cf4c6fb386a7 (diff)
downloadATCD-5446ce60d8d79d31ab3d2c3609f257ecc5cdd3b4.tar.gz
ChangeLogTag:Mon Mar 12 11:37:14 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/examples/Simple/echo/Echo_i.cpp')
-rw-r--r--TAO/examples/Simple/echo/Echo_i.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/examples/Simple/echo/Echo_i.cpp b/TAO/examples/Simple/echo/Echo_i.cpp
index 996d60c9222..9f9a5c3fc92 100644
--- a/TAO/examples/Simple/echo/Echo_i.cpp
+++ b/TAO/examples/Simple/echo/Echo_i.cpp
@@ -52,17 +52,17 @@ Echo_i::echo_list (const char *,
list->length (3);
// Just do something to get a list of object references.
- (*list)[0] =
+ list[CORBA::ULong(0)] =
orb_->resolve_initial_references ("NameService",
ACE_TRY_ENV);
ACE_CHECK_RETURN (0);
- (*list)[1] =
+ list[CORBA::ULong(1)] =
orb_->resolve_initial_references ("NameService",
ACE_TRY_ENV);;
ACE_CHECK_RETURN (0);
- (*list)[2] =
+ list[CORBA::ULong(2)] =
orb_->resolve_initial_references ("NameService",
ACE_TRY_ENV);
ACE_CHECK_RETURN (0);