diff options
author | Dan Winship <danw@src.gnome.org> | 2004-04-10 02:07:23 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2004-04-10 02:07:23 +0800 |
commit | e03ebc523557e0cf886da250c8ea575bdfd5e25f (patch) | |
tree | 53fecdbf5f724b21ab4e74fc059e66d9162da75b /shell/e-shell.c | |
parent | c3f9d4cbc992a6abec040ef6c3f2c15de77a5b91 (diff) | |
download | gsoc2013-evolution-e03ebc523557e0cf886da250c8ea575bdfd5e25f.tar gsoc2013-evolution-e03ebc523557e0cf886da250c8ea575bdfd5e25f.tar.gz gsoc2013-evolution-e03ebc523557e0cf886da250c8ea575bdfd5e25f.tar.bz2 gsoc2013-evolution-e03ebc523557e0cf886da250c8ea575bdfd5e25f.tar.lz gsoc2013-evolution-e03ebc523557e0cf886da250c8ea575bdfd5e25f.tar.xz gsoc2013-evolution-e03ebc523557e0cf886da250c8ea575bdfd5e25f.tar.zst gsoc2013-evolution-e03ebc523557e0cf886da250c8ea575bdfd5e25f.zip |
unref the component registry
* e-shell.c (impl_dispose): unref the component registry
svn path=/trunk/; revision=25398
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index fb6909c5c5..c91152b62b 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -346,6 +346,11 @@ impl_dispose (GObject *object) } #endif + if (priv->component_registry != NULL) { + g_object_unref (priv->component_registry); + priv->component_registry = NULL; + } + if (priv->offline_handler != NULL) { g_object_unref (priv->offline_handler); priv->offline_handler = NULL; |