aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-06-25 16:29:35 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-06-25 16:29:35 +0800
commitd2f749b6ab48d85ca4411894e9960df2cc07ef9f (patch)
treea3c0923d1a365ec853848a6b7aae448666b20091 /shell/e-shell.c
parent57a9a15d4216c4402373781adf32231c54ce92a9 (diff)
downloadgsoc2013-evolution-d2f749b6ab48d85ca4411894e9960df2cc07ef9f.tar
gsoc2013-evolution-d2f749b6ab48d85ca4411894e9960df2cc07ef9f.tar.gz
gsoc2013-evolution-d2f749b6ab48d85ca4411894e9960df2cc07ef9f.tar.bz2
gsoc2013-evolution-d2f749b6ab48d85ca4411894e9960df2cc07ef9f.tar.lz
gsoc2013-evolution-d2f749b6ab48d85ca4411894e9960df2cc07ef9f.tar.xz
gsoc2013-evolution-d2f749b6ab48d85ca4411894e9960df2cc07ef9f.tar.zst
gsoc2013-evolution-d2f749b6ab48d85ca4411894e9960df2cc07ef9f.zip
Get the shell to unregister the components on exit again.
svn path=/trunk/; revision=10475
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r--shell/e-shell.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c
index bd18eba611..f0e86aa96a 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -1357,9 +1357,12 @@ e_shell_unregister_all (EShell *shell)
g_return_if_fail (E_IS_SHELL (shell));
+ /* FIXME: This really really sucks. */
+
priv = shell->priv;
-#error "Implement me"
+ gtk_object_unref (GTK_OBJECT (priv->component_registry));
+ priv->component_registry = NULL;
}