summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-24 22:02:48 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-24 22:02:48 +0000
commitbb8722f60370460c7718cd0061ad4c3bdcb519db (patch)
treebe1bc658c4a27d2c74d6a52084570638517fc620
parent340de5981014805ee27a7be6070776c65d02e8ab (diff)
downloadATCD-bb8722f60370460c7718cd0061ad4c3bdcb519db.tar.gz
Changed op_name() to operation ()
-rw-r--r--TAO/TAO_IDL/be/be_interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_interface.cpp b/TAO/TAO_IDL/be/be_interface.cpp
index 299abd239de..dabc7a94ee0 100644
--- a/TAO/TAO_IDL/be/be_interface.cpp
+++ b/TAO/TAO_IDL/be/be_interface.cpp
@@ -907,7 +907,7 @@ int be_interface::gen_server_skeletons (void)
*ss << "{\n";
ss->incr_indent ();
*ss << "TAO_Skeleton skel; // pointer to skeleton for operation" << nl;
- *ss << "CORBA::String opname = req.op_name (); // retrieve operation name" <<
+ *ss << "CORBA::String opname = req.operation (); // retrieve operation name" <<
nl;
*ss << "// find the skeleton corresponding to this opname" << nl;
*ss << "if (this->_find (opname, skel) == -1)" << nl;