summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-09-06 18:02:02 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-09-06 18:02:02 +0000
commit98bab6b2056f9b3574f2a70a20c2cb9d0f8bebe3 (patch)
tree1d666c9836ce1c61316d01cf434a74d092745cde
parent1bcb2235a21f57ebbeb6c207aad838d8494abf8a (diff)
downloadATCD-98bab6b2056f9b3574f2a70a20c2cb9d0f8bebe3.tar.gz
Thu Sep 6 18:01:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Service.h2
2 files changed, 8 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 3f65b5cc2cf..ebd56219fbc 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Thu Sep 6 18:01:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * orbsvcs/orbsvcs/Notify/Service.h (create):
+ Readded default argument for pure virtual function this is required
+
Thu Sep 6 13:10:49 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/include/idl_global.h:
@@ -5,9 +10,9 @@ Thu Sep 6 13:10:49 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_enum.cpp:
* TAO_IDL/driver/drv_preproc.cpp:
* TAO_IDL/util/utl_global.cpp:
-
+
Fixes intended for checkin last July and overlooked, including:
-
+
- fixes to optional generated stream operators
- addition and usage of global list of relative include paths
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Service.h b/TAO/orbsvcs/orbsvcs/Notify/Service.h
index 6ca2a812502..8b5f9898a19 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Service.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/Service.h
@@ -78,7 +78,7 @@ public:
/// Create the Channel Factory.
virtual CosNotifyChannelAdmin::EventChannelFactory_ptr create (
PortableServer::POA_ptr default_POA,
- const char* factory_name) = 0;
+ const char* factory_name = "EventChannelFactory") = 0;
};
TAO_END_VERSIONED_NAMESPACE_DECL