summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_operation.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-03-22 00:54:48 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-03-22 00:54:48 +0000
commit067b05bbb1427cc16a993bcf1f919713e02712b3 (patch)
tree06a6d81c5289064a0a88354fa5bf87badf251588 /TAO/TAO_IDL/be/be_operation.cpp
parentcde12565d74d8980568965745ca2d0692802b55c (diff)
downloadATCD-067b05bbb1427cc16a993bcf1f919713e02712b3.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/TAO_IDL/be/be_operation.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_operation.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/be/be_operation.cpp b/TAO/TAO_IDL/be/be_operation.cpp
index 88dfcdfd5ea..602ab706e1d 100644
--- a/TAO/TAO_IDL/be/be_operation.cpp
+++ b/TAO/TAO_IDL/be/be_operation.cpp
@@ -467,7 +467,7 @@ be_operation::gen_client_stubs (void)
*cs << "this->Release (); "
<< "// QueryInterface has bumped up our refcount" << nl;
- // do any pre do_call stuff with arguments
+ // do any pre do_static_call stuff with arguments
cg->push (TAO_CodeGen::TAO_ARGUMENT_PRE_DOCALL_CS);
if (be_scope::gen_client_stubs () == -1)
{
@@ -478,8 +478,8 @@ be_operation::gen_client_stubs (void)
}
cg->pop ();
- // call do_call with appropriate number of arguments
- *cs << "istub->do_call (env, &" << this->flatname ()
+ // call do_static_call with appropriate number of arguments
+ *cs << "istub->do_static_call (env, &" << this->flatname ()
<< "_calldata";
// if our return type is not void, then pass the address of retval
@@ -531,7 +531,7 @@ be_operation::gen_client_stubs (void)
cg->pop ();
*cs << ");" << nl;
- // do any post do_call stuff with arguments
+ // do any post do_static_call stuff with arguments
cg->push (TAO_CodeGen::TAO_ARGUMENT_POST_DOCALL_CS);
if (be_scope::gen_client_stubs () == -1)
{