summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/AV/Flows_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/AV/Flows_T.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/Flows_T.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/AV/Flows_T.cpp b/TAO/orbsvcs/orbsvcs/AV/Flows_T.cpp
index b4d9166e2b4..74575e33cc8 100644
--- a/TAO/orbsvcs/orbsvcs/AV/Flows_T.cpp
+++ b/TAO/orbsvcs/orbsvcs/AV/Flows_T.cpp
@@ -223,14 +223,14 @@ TAO_FDev<T_Producer, T_Consumer>::destroy (AVStreams::FlowEndPoint_ptr /* the_ep
{
// @@ Shouldn't the parameters be made use of!
// Destroy/delete all the producers and consumers.
-
+
TAO_FlowProducer *producer_i;
for (PRODUCER_LIST_ITERATOR producer_list_iterator (this->producer_list_);
(producer_i = producer_list_iterator.next ()) != 0;
producer_list_iterator.advance ())
{
- TAO_AV_Core::deactivate_servant (producer_i);
+ deactivate_servant (producer_i);
delete producer_i;
}
@@ -240,10 +240,10 @@ TAO_FDev<T_Producer, T_Consumer>::destroy (AVStreams::FlowEndPoint_ptr /* the_ep
(consumer_i = consumer_list_iterator.next ()) != 0;
consumer_list_iterator.advance ())
{
- TAO_AV_Core::deactivate_servant (consumer_i);
+ deactivate_servant (consumer_i);
delete consumer_i;
}
- int result = TAO_AV_Core::deactivate_servant (this);
+ int result = deactivate_servant (this);
if (result < 0)
if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG,"TAO_StreamEndPoint::destroy failed\n"));
}