summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_operation/amh_ss.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_operation/amh_ss.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/amh_ss.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/amh_ss.cpp b/TAO/TAO_IDL/be/be_visitor_operation/amh_ss.cpp
index c48a71faded..38ccf0a282b 100644
--- a/TAO/TAO_IDL/be/be_visitor_operation/amh_ss.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_operation/amh_ss.cpp
@@ -81,8 +81,8 @@ be_visitor_amh_operation_ss::visit_operation (be_operation *node)
}
*os << be_nl
- << "TAO_InputCDR &_tao_in ="
- << " _tao_server_request.incoming ();" << be_nl << be_nl
+ << "TAO_InputCDR & _tao_in ="
+ << " *_tao_server_request.incoming ();" << be_nl << be_nl
<< "if (!(" << be_idt << be_idt;
// Marshal each in and inout argument.
@@ -233,8 +233,8 @@ be_visitor_amh_operation_ss::visit_attribute (be_attribute *node)
}
*os << be_nl
- << "TAO_InputCDR &_tao_in ="
- << " _tao_server_request.incoming ();"
+ << "TAO_InputCDR & _tao_in ="
+ << " *_tao_server_request.incoming ();"
<< be_nl << be_nl
<< "if (!(" << be_idt << be_idt;
@@ -330,8 +330,8 @@ be_visitor_amh_operation_ss::generate_shared_prologue (be_decl *node,
<< skel_prefix
<< node->local_name ()
<< "_skel (" << be_idt << be_idt_nl
- << "TAO_ServerRequest &_tao_server_request," << be_nl
- << "void *_tao_object_reference, " << be_nl
+ << "TAO_ServerRequest & _tao_server_request," << be_nl
+ << "void * _tao_servant, " << be_nl
<< "void * /* context */ " << be_nl
<< "ACE_ENV_ARG_DECL" << be_uidt_nl
<< ")" << be_uidt_nl;
@@ -341,10 +341,10 @@ be_visitor_amh_operation_ss::generate_shared_prologue (be_decl *node,
*os << "{" << be_idt_nl;
// Get the right object implementation.
- *os << amh_skel_name.c_str () << " *_tao_impl =" << be_idt_nl
+ *os << amh_skel_name.c_str () << " * const _tao_impl =" << be_idt_nl
<< "static_cast<" << be_idt << be_idt_nl
<< amh_skel_name.c_str () << " *> (" << be_nl
- << "_tao_object_reference" << be_uidt_nl
+ << "_tao_servant" << be_uidt_nl
<< ");" << be_uidt << be_uidt;
return 0;