aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-26 03:39:19 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-26 03:39:19 +0800
commite937e8ddfe8c889ebda128b914050e72f9556f42 (patch)
tree06766e94d5e387cbc3ce7610840136f09fc6a5a4
parent5b52c5ac764f007457fc12f3abcb644011c76b43 (diff)
downloadgsoc2013-evolution-e937e8ddfe8c889ebda128b914050e72f9556f42.tar
gsoc2013-evolution-e937e8ddfe8c889ebda128b914050e72f9556f42.tar.gz
gsoc2013-evolution-e937e8ddfe8c889ebda128b914050e72f9556f42.tar.bz2
gsoc2013-evolution-e937e8ddfe8c889ebda128b914050e72f9556f42.tar.lz
gsoc2013-evolution-e937e8ddfe8c889ebda128b914050e72f9556f42.tar.xz
gsoc2013-evolution-e937e8ddfe8c889ebda128b914050e72f9556f42.tar.zst
gsoc2013-evolution-e937e8ddfe8c889ebda128b914050e72f9556f42.zip
(component_destroy): Removed.
(create_component): Do not connect. svn path=/trunk/; revision=18913
-rw-r--r--my-evolution/ChangeLog5
-rw-r--r--my-evolution/component-factory.c11
2 files changed, 5 insertions, 11 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index c49ab24b94..427a2e2989 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-25 Ettore Perazzoli <ettore@ximian.com>
+
+ * component-factory.c (component_destroy): Removed.
+ (create_component): Do not connect.
+
2002-11-20 Ettore Perazzoli <ettore@ximian.com>
* component-factory.c (owner_unset_cb): bonobo_main_quit() instead
diff --git a/my-evolution/component-factory.c b/my-evolution/component-factory.c
index e04e8ca3f7..eaa84e39f8 100644
--- a/my-evolution/component-factory.c
+++ b/my-evolution/component-factory.c
@@ -111,16 +111,6 @@ owner_unset_cb (EvolutionShellComponent *shell_component,
bonobo_main_quit ();
}
-static void
-component_destroy (BonoboObject *factory,
- gpointer user_data)
-{
- running_objects--;
-
- if (running_objects > 0)
- return;
-}
-
static BonoboObject *
create_component (void)
{
@@ -141,7 +131,6 @@ create_component (void)
NULL, NULL,
NULL, NULL);
- g_signal_connect (shell_component, "destroy", G_CALLBACK (component_destroy), NULL);
g_signal_connect (shell_component, "owner_set", G_CALLBACK (owner_set_cb), NULL);
g_signal_connect (shell_component, "owner_unset", G_CALLBACK (owner_unset_cb), NULL);