summaryrefslogtreecommitdiff
path: root/TAO/examples/TypeCode_Creation/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/TypeCode_Creation/main.cpp')
-rw-r--r--TAO/examples/TypeCode_Creation/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/examples/TypeCode_Creation/main.cpp b/TAO/examples/TypeCode_Creation/main.cpp
index e8dbba5999a..b811e0b9aca 100644
--- a/TAO/examples/TypeCode_Creation/main.cpp
+++ b/TAO/examples/TypeCode_Creation/main.cpp
@@ -13,13 +13,13 @@ int main(int argc, char *argv[])
CORBA::ORB_var orb = CORBA::ORB_init (argc,
argv,
""
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
CORBA::TypeCode_var iface_tc =
orb->create_interface_tc (CORBA::string_dup ("IDL:iface:1.0"),
CORBA::string_dup ("iface")
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
CORBA::ULong length = 5;
@@ -73,7 +73,7 @@ int main(int argc, char *argv[])
"foo",
CORBA::_tc_short,
foo_members
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
length = 2;
@@ -95,12 +95,12 @@ int main(int argc, char *argv[])
CORBA::TypeCode_var bar_tc = orb->create_struct_tc ("IDL:bar:1.0",
"bar",
bar_members
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
// Check for equality with the typecode created by the IDL compiler.
CORBA::Boolean eq = bar_tc->equal (_tc_bar
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
if (!eq)