diff options
author | Michael Meeks <michael@helixcode.com> | 2000-08-04 09:14:32 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-08-04 09:14:32 +0800 |
commit | 6d6b9ec70ea0e6f16935ffbae676909c5a09f06c (patch) | |
tree | 55eaa990de792cfdc46ec999514cb2361d429d2d /shell/e-storage-set.c | |
parent | d2856de03062e5540dfefe3b8449324467e63966 (diff) | |
download | gsoc2013-evolution-6d6b9ec70ea0e6f16935ffbae676909c5a09f06c.tar gsoc2013-evolution-6d6b9ec70ea0e6f16935ffbae676909c5a09f06c.tar.gz gsoc2013-evolution-6d6b9ec70ea0e6f16935ffbae676909c5a09f06c.tar.bz2 gsoc2013-evolution-6d6b9ec70ea0e6f16935ffbae676909c5a09f06c.tar.lz gsoc2013-evolution-6d6b9ec70ea0e6f16935ffbae676909c5a09f06c.tar.xz gsoc2013-evolution-6d6b9ec70ea0e6f16935ffbae676909c5a09f06c.tar.zst gsoc2013-evolution-6d6b9ec70ea0e6f16935ffbae676909c5a09f06c.zip |
Remove erroneous refs on folder_type_registry, storage_set.
2000-08-04 Michael Meeks <michael@helixcode.com>
* e-shell.c (e_shell_construct): Remove erroneous refs on
folder_type_registry, storage_set.
* e-shortcuts-view.c (destroy): unref the shortcuts, causing a
massive ripple chain ref-count reaction.
svn path=/trunk/; revision=4522
Diffstat (limited to 'shell/e-storage-set.c')
-rw-r--r-- | shell/e-storage-set.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-storage-set.c b/shell/e-storage-set.c index 3a1fbb9b65..7b18d93c1c 100644 --- a/shell/e-storage-set.c +++ b/shell/e-storage-set.c @@ -198,7 +198,8 @@ destroy (GtkObject *object) gtk_object_unref (GTK_OBJECT (priv->folder_type_registry)); - g_hash_table_foreach (priv->name_to_named_storage, (GHFunc) named_storage_destroy, NULL); + g_hash_table_foreach (priv->name_to_named_storage, + (GHFunc) named_storage_destroy, NULL); g_hash_table_destroy (priv->name_to_named_storage); g_free (priv); |