summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_exception.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-10 20:14:34 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-10 20:14:34 +0000
commit08f7761a4e9cc2f7fea455441edf45fe284c1292 (patch)
tree6519bda80c0364aff54858b315a06451add8acea /TAO/TAO_IDL/be/be_exception.cpp
parentf86e906e0318417084f392ce6f36c45c04677693 (diff)
downloadATCD-08f7761a4e9cc2f7fea455441edf45fe284c1292.tar.gz
ChangeLogTag:Sat Jan 10 14:08:09 1998 <coryan@MILONGA>
Diffstat (limited to 'TAO/TAO_IDL/be/be_exception.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_exception.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/be/be_exception.cpp b/TAO/TAO_IDL/be/be_exception.cpp
index 09d4446d1eb..95332e2fefa 100644
--- a/TAO/TAO_IDL/be/be_exception.cpp
+++ b/TAO/TAO_IDL/be/be_exception.cpp
@@ -208,7 +208,7 @@ be_exception::gen_client_inline (void)
*ci << "// default constructor" << nl;
*ci << "ACE_INLINE" << nl;
*ci << this->name () << "::" << this->local_name () << " (void)" << nl;
- *ci << "\t: CORBA_UserException (ACE_CORBA_3 (TypeCode, _duplicate) (" <<
+ *ci << "\t: CORBA_UserException (CORBA::TypeCode::_duplicate (" <<
this->tc_name () << "))\n";
*ci << "{" << nl;
*ci << "}\n\n";
@@ -266,8 +266,8 @@ be_exception::gen_client_stubs (void)
*cs << "// copy constructor" << nl;
*cs << this->name () << "::" << this->local_name () << "(const " <<
this->name () << " &_tao_excp)" << nl;
- *cs << "\t:ACE_CORBA_1 (UserException) (" <<
- "ACE_CORBA_3 (TypeCode, _duplicate) (_tao_excp.type ()))" << nl;
+ *cs << "\t:CORBA_UserException (" <<
+ "CORBA::TypeCode::_duplicate (_tao_excp.type ()))" << nl;
*cs << "{\n";
cs->incr_indent ();
// assign each individual member
@@ -289,7 +289,7 @@ be_exception::gen_client_stubs (void)
*cs << "{\n";
cs->incr_indent ();
*cs << "this->type_ = " <<
- "ACE_CORBA_3 (TypeCode, _duplicate) (_tao_excp.type ());\n";
+ "CORBA::TypeCode::_duplicate (_tao_excp.type ());\n";
// assign each individual member
if (be_scope::gen_client_stubs () == -1)
{
@@ -323,7 +323,7 @@ be_exception::gen_client_stubs (void)
*cs << ")" << nl;
*cs << "\t: CORBA_UserException " <<
- "(ACE_CORBA_3 (TypeCode, _duplicate) (" << this->tc_name () <<
+ "(CORBA::TypeCode::_duplicate (" << this->tc_name () <<
"))" << nl;
*cs << "{\n";
cs->incr_indent ();