summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwilson_d <wilson_d@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-12-04 16:31:08 +0000
committerwilson_d <wilson_d@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-12-04 16:31:08 +0000
commite9a71ceaf2630545a9bb176adb5e4671674ec146 (patch)
tree3ca4593804507876f3820c2dc7e16fffadea7c6e
parentcda70b430476c2bfcee5f4cd299092880cc91b22 (diff)
downloadATCD-e9a71ceaf2630545a9bb176adb5e4671674ec146.tar.gz
ChangeLogTag: Thu Dec 4 10:20:34 2003 Dale Wilson <wilson_d@ociweb.com>
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp12
2 files changed, 11 insertions, 6 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 1edaf11b8e9..356977ec52e 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Thu Dec 4 10:20:34 2003 Dale Wilson <wilson_d@ociweb.com>
+
+ * orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp:
+ Typo in last checkin.
+
Thu Dec 4 10:07:33 2003 Dale Wilson <wilson_d@ociweb.com>
* orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/server.cpp:
diff --git a/TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp b/TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp
index 0cf755006bc..5968e218dcd 100644
--- a/TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp
+++ b/TAO/orbsvcs/FTRT_Event_Service/Factory_Service/EventChannelFactory_i.cpp
@@ -64,16 +64,16 @@ CORBA::Object_ptr EventChannelFactory_i::create_object (
}
}
- ACE_THROW_RETURN(PortableGroup\::ObjectNotCreated(), CORBA::Object::_nil());
+ ACE_THROW_RETURN(PortableGroup::ObjectNotCreated(), CORBA::Object::_nil());
}
void EventChannelFactory_i::delete_object (
- const PortableGroup\::GenericFactory::FactoryCreationId & factory_creation_id
+ const PortableGroup::GenericFactory::FactoryCreationId & factory_creation_id
ACE_ENV_ARG_DECL_NOT_USED
)
ACE_THROW_SPEC ((
CORBA::SystemException
- , PortableGroup\::ObjectNotFound
+ , PortableGroup::ObjectNotFound
))
{
ACE_TRACE("EventChannelFactory_i::delete_object");
@@ -88,8 +88,8 @@ void EventChannelFactory_i::delete_object (
CORBA::Object_ptr EventChannelFactory_i::create_process (
char * process_str,
- const PortableGroup\::Criteria & the_criteria,
- PortableGroup\::GenericFactory::FactoryCreationId_out factory_creation_id)
+ const PortableGroup::Criteria & the_criteria,
+ PortableGroup::GenericFactory::FactoryCreationId_out factory_creation_id)
{
ACE_TRACE("EventChannelFactory_i::create_process");
@@ -98,7 +98,7 @@ CORBA::Object_ptr EventChannelFactory_i::create_process (
// fill the factory_creation_id
ACE_NEW_RETURN(factory_creation_id,
- PortableGroup\::GenericFactory::FactoryCreationId,
+ PortableGroup::GenericFactory::FactoryCreationId,
CORBA::Object::_nil());
*factory_creation_id <<= (CORBA::ULong) ++id;