aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/component-factory.c
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 /my-evolution/component-factory.c
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
Diffstat (limited to 'my-evolution/component-factory.c')
-rw-r--r--my-evolution/component-factory.c11
1 files changed, 0 insertions, 11 deletions
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);