summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
Diffstat (limited to 'TAO')
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp4
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Set_Update_Interceptor.cpp2
3 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 eb496c844f7..afc2072487d 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/FTEC_Event_Channel_Impl.cpp
@@ -314,7 +314,7 @@ TAO_FTEC_Event_Channel_Impl::connect_push_consumer (
FtRtecEventChannelAdmin::ObjectId *oid;
- if ((*any) >>= oid) {
+ if (any.in() >>= oid) {
FtRtecEventChannelAdmin::ObjectId* result;
ACE_NEW_THROW_EX(result,
FtRtecEventChannelAdmin::ObjectId(*oid),
@@ -354,7 +354,7 @@ TAO_FTEC_Event_Channel_Impl::connect_push_supplier (
FtRtecEventChannelAdmin::ObjectId *oid;
- if ((*any) >>= oid) {
+ if (any.in() >>= oid) {
FtRtecEventChannelAdmin::ObjectId* result;
ACE_NEW_THROW_EX(result,
FtRtecEventChannelAdmin::ObjectId(*oid),
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp
index e6520bb592b..785e4ab3907 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp
@@ -75,7 +75,7 @@ get_object_id(CORBA::Any_var a
FtRtecEventChannelAdmin::ObjectId* object_id;
FtRtecEventChannelAdmin::ObjectId_var result;
- if (((*a) >>= object_id) ==0)
+ if ((a.in() >>= object_id) ==0)
ACE_THROW_RETURN(CORBA::NO_MEMORY(), result);
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Set_Update_Interceptor.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Set_Update_Interceptor.cpp
index aae147ca472..154b952b0be 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Set_Update_Interceptor.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Set_Update_Interceptor.cpp
@@ -59,7 +59,7 @@ TAO_Set_Update_Interceptor::send_request (
IOP::ServiceContext* sc;
- if (((*a) >>= sc) ==0)
+ if ((a.in() >>= sc) ==0)
return;
ri->add_request_service_context (*sc, 0 ACE_ENV_ARG_PARAMETER);