diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-25 16:29:35 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-25 16:29:35 +0800 |
commit | d2f749b6ab48d85ca4411894e9960df2cc07ef9f (patch) | |
tree | a3c0923d1a365ec853848a6b7aae448666b20091 /shell/e-shell.c | |
parent | 57a9a15d4216c4402373781adf32231c54ce92a9 (diff) | |
download | gsoc2013-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.c | 5 |
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; } |