summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-01-13 09:34:20 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-01-13 09:34:20 +0100
commit97ad74101a0ae4d0724e5c783cf740469454ee25 (patch)
treeb4df867fb82fc65240f52446ec9e4240d8fec393
parent63fc79dca4e7232727d4f5020d5d1ed8b7553298 (diff)
downloadATCD-97ad74101a0ae4d0724e5c783cf740469454ee25.tar.gz
Make usage of var/ptr as it was
* TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp:
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp
index 0050cad81b5..66f7793c896 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp
@@ -266,9 +266,9 @@ TAO_FTEC_Event_Channel_Impl::connect_push_consumer (
FtRtecEventChannelAdmin::ObjectId* retval = 0;
ACE_NEW_THROW_EX(retval, FtRtecEventChannelAdmin::ObjectId, CORBA::NO_MEMORY());
- FtRtecEventChannelAdmin::ObjectId_var object_id = *retval;
+ FtRtecEventChannelAdmin::ObjectId_var object_id = retval;
- Request_Context_Repository().generate_object_id(object_id.inout ());
+ Request_Context_Repository().generate_object_id(*retval);
obtain_push_supplier_and_connect(this,
object_id.in(),
@@ -300,9 +300,9 @@ TAO_FTEC_Event_Channel_Impl::connect_push_supplier (
FtRtecEventChannelAdmin::ObjectId* retval = 0;
ACE_NEW_THROW_EX(retval, FtRtecEventChannelAdmin::ObjectId, CORBA::NO_MEMORY());
- FtRtecEventChannelAdmin::ObjectId_var object_id = *retval;
+ FtRtecEventChannelAdmin::ObjectId_var object_id = retval;
- Request_Context_Repository().generate_object_id(object_id.inout ());
+ Request_Context_Repository().generate_object_id(*retval);
obtain_push_consumer_and_connect(this,
object_id.in(),