aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-folder-type-registry.c
diff options
context:
space:
mode:
authorMichael Meeks <michael@helixcode.com>2000-08-04 09:14:32 +0800
committerMichael Meeks <mmeeks@src.gnome.org>2000-08-04 09:14:32 +0800
commit6d6b9ec70ea0e6f16935ffbae676909c5a09f06c (patch)
tree55eaa990de792cfdc46ec999514cb2361d429d2d /shell/e-folder-type-registry.c
parentd2856de03062e5540dfefe3b8449324467e63966 (diff)
downloadgsoc2013-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-folder-type-registry.c')
-rw-r--r--shell/e-folder-type-registry.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/e-folder-type-registry.c b/shell/e-folder-type-registry.c
index 8e3e87ed8b..34fa5a0193 100644
--- a/shell/e-folder-type-registry.c
+++ b/shell/e-folder-type-registry.c
@@ -155,7 +155,8 @@ set_handler (EFolderTypeRegistry *folder_type_registry,
if (folder_type == NULL)
return FALSE;
if (folder_type->handler != NULL) {
- g_warning ("Folder type already has a handler -- %s", folder_type->name);
+ g_warning ("Folder type already has a handler -- %s",
+ folder_type->name);
return FALSE;
}
@@ -188,7 +189,8 @@ destroy (GtkObject *object)
folder_type_registry = E_FOLDER_TYPE_REGISTRY (object);
priv = folder_type_registry->priv;
- g_hash_table_foreach (priv->name_to_type, hash_forall_free_folder_type, NULL);
+ g_hash_table_foreach (priv->name_to_type,
+ hash_forall_free_folder_type, NULL);
g_hash_table_destroy (priv->name_to_type);
g_free (priv);