summaryrefslogtreecommitdiff
path: root/TAO/tao/Service_Context.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-04-13 09:52:42 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-04-13 09:52:42 +0200
commitdb9809559cd9351a3c783e56de6340e82e434f37 (patch)
treec7d6d5cb81f39243466e941e9aff4e71bfb67cad /TAO/tao/Service_Context.cpp
parent29c5bc48b96635cf8aba0f63e3ebd5f3802452d3 (diff)
downloadATCD-db9809559cd9351a3c783e56de6340e82e434f37.tar.gz
Documentation changes, fixed some typos
* TAO/docs/ec_options.html: * TAO/docs/pluggable_protocols/index.html: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_ConsumerAdmin.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_ConsumerControl.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_Dispatching.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_EventChannel.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_MT_Dispatching.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullConsumer.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullSupplier.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushSupplier.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_Reactive_ConsumerControl.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_Reactive_SupplierControl.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_SupplierAdmin.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_SupplierControl.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedConsumerAdmin.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedEventChannel.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedProxyPushConsumer.h: * TAO/orbsvcs/orbsvcs/CosEvent/CEC_TypedSupplierAdmin.h: * TAO/orbsvcs/orbsvcs/ESF/ESF_Proxy_Collection.h: * TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel_Base.h: * TAO/orbsvcs/orbsvcs/Event/EC_ProxyConsumer.h: * TAO/orbsvcs/orbsvcs/Notify/Validate_Client_Task.h: * TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Acceptor.cpp: * TAO/orbsvcs/orbsvcs/Sched/Config_Scheduler.cpp: * TAO/tao/IORInterceptor/IORInfo.h: * TAO/tao/ORB_Core.h: * TAO/tao/Service_Context.cpp: * TAO/tao/Stub.cpp: * TAO/tao/Tagged_Components.cpp:
Diffstat (limited to 'TAO/tao/Service_Context.cpp')
-rw-r--r--TAO/tao/Service_Context.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Service_Context.cpp b/TAO/tao/Service_Context.cpp
index b7961c0af1b..f39f2ce2a88 100644
--- a/TAO/tao/Service_Context.cpp
+++ b/TAO/tao/Service_Context.cpp
@@ -84,7 +84,7 @@ void
TAO_Service_Context::set_context_i (const IOP::ServiceContext& context)
{
// @@ TODO Some contexts can show up multiple times, others
- // can't find out and take appropiate action.
+ // can't find out and take appropriate action.
for (CORBA::ULong i = 0; i != this->service_context_.length (); ++i)
{
if (context.context_id == this->service_context_[i].context_id)
@@ -119,7 +119,7 @@ void
TAO_Service_Context::add_context_i (IOP::ServiceContext& context)
{
// @@ TODO Some contexts can show up multiple times, others
- // can't find out and take appropiate action.
+ // can't find out and take appropriate action.
CORBA::ULong const l = this->service_context_.length ();
this->service_context_.length (l + 1);
this->service_context_[l].context_id = context.context_id;
@@ -133,7 +133,7 @@ void
TAO_Service_Context::add_context_i (const IOP::ServiceContext& context)
{
// @@ TODO Some contexts can show up multiple times, others
- // can't find out and take appropiate action.
+ // can't find out and take appropriate action.
CORBA::ULong const l = this->service_context_.length ();
this->service_context_.length (l + 1);
this->service_context_[l] = context;