diff options
-rw-r--r-- | my-evolution/ChangeLog | 5 | ||||
-rw-r--r-- | my-evolution/component-factory.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 0dc8059a9a..c88fa3b719 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,8 @@ +2002-12-06 Ettore Perazzoli <ettore@ximian.com> + + * component-factory.c: Change description passed to + BONOBO_ACTIVATION_SHLIB_FACTORY to correctly say we are a factroy. + 2002-12-04 Ettore Perazzoli <ettore@ximian.com> * Makefile.am (componentdir): Install in $(COMPONENT_DIR), not in diff --git a/my-evolution/component-factory.c b/my-evolution/component-factory.c index 6cfa41d7ba..ef45a3f627 100644 --- a/my-evolution/component-factory.c +++ b/my-evolution/component-factory.c @@ -160,4 +160,4 @@ factory (BonoboGenericFactory *this, return NULL; } -BONOBO_ACTIVATION_SHLIB_FACTORY (FACTORY_ID, "Evolution Summary component", factory, NULL) +BONOBO_ACTIVATION_SHLIB_FACTORY (FACTORY_ID, "Evolution Summary component factory", factory, NULL) |