summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/FtRtEvent
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-01-08 20:05:24 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-01-08 20:05:24 +0000
commitaa5bd8c1b0ce72af4dc794b9321e1bdabe8d1b76 (patch)
tree4e1d81c81dda49d748782808871b0c122fe033f8 /TAO/orbsvcs/orbsvcs/FtRtEvent
parent384be74e402c46240f4dae019257a97900d07827 (diff)
downloadATCD-aa5bd8c1b0ce72af4dc794b9321e1bdabe8d1b76.tar.gz
ChangeLogTag: Thu Jan 8 20:05:33 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/FtRtEvent')
-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);