Fix a refcounting problem with the local storage. ("Somebody" added a

wrong unref without putting that in the ChangeLog.  Yes, you know who
you are.  ;-))

svn path=/trunk/; revision=5565
This commit is contained in:
Ettore Perazzoli
2000-09-24 22:58:34 +00:00
parent f5ad2892d1
commit 87aaa04f1b
2 changed files with 4 additions and 2 deletions
+4
View File
@@ -1,3 +1,7 @@
2000-09-24 Ettore Perazzoli <ettore@helixcode.com>
* e-shell.c (setup_local_storage): Don't unref the local storage.
2000-09-22 Michael Meeks <michael@helixcode.com>
* e-shell-view-menu.c (e_shell_view_menu_setup): upd.
-2
View File
@@ -321,8 +321,6 @@ setup_local_storage (EShell *shell)
e_storage_set_add_storage (priv->storage_set, local_storage);
priv->local_storage = E_LOCAL_STORAGE (local_storage);
gtk_object_unref (GTK_OBJECT (local_storage));
return TRUE;
}