summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO_Server_Request.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/TAO_Server_Request.cpp')
-rw-r--r--TAO/tao/TAO_Server_Request.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/TAO_Server_Request.cpp b/TAO/tao/TAO_Server_Request.cpp
index 3eed1af8bc7..5441117ea4a 100644
--- a/TAO/tao/TAO_Server_Request.cpp
+++ b/TAO/tao/TAO_Server_Request.cpp
@@ -127,7 +127,7 @@ void
TAO_ServerRequest::init_reply (void)
{
// Construct our reply generator.
- TAO_Pluggable_Reply_Params reply_params (this->orb_core_);
+ TAO_Pluggable_Reply_Params_Base reply_params;
// We put all the info that we have in to this <reply_params> and
// call the <write_reply_header> in the
@@ -185,7 +185,7 @@ void
TAO_ServerRequest::send_no_exception_reply (void)
{
// Construct our reply generator.
- TAO_Pluggable_Reply_Params reply_params (this->orb_core_);
+ TAO_Pluggable_Reply_Params_Base reply_params;
reply_params.request_id_ = this->request_id_;
reply_params.is_dsi_ = this->is_dsi_;
reply_params.dsi_nvlist_align_ = this->dsi_nvlist_align_;
@@ -249,7 +249,7 @@ TAO_ServerRequest::tao_send_reply_exception (CORBA::Exception &ex)
if (this->response_expected_)
{
// A copy of the reply parameters
- TAO_Pluggable_Reply_Params reply_params (this->orb_core_);
+ TAO_Pluggable_Reply_Params_Base reply_params;
reply_params.request_id_ = this->request_id_;
reply_params.svc_ctx_.length (0);