diff options
author | Dan Winship <danw@src.gnome.org> | 2003-07-18 01:09:38 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-07-18 01:09:38 +0800 |
commit | 1016194c44ba2ba83a202885d39284189fe840f1 (patch) | |
tree | 28c628c31db55380da195c555edcadff950bf396 /shell/e-splash.c | |
parent | 9bcb908ca516ac24874af94ab2a5acc9af437170 (diff) | |
download | gsoc2013-evolution-1016194c44ba2ba83a202885d39284189fe840f1.tar.gz gsoc2013-evolution-1016194c44ba2ba83a202885d39284189fe840f1.tar.zst gsoc2013-evolution-1016194c44ba2ba83a202885d39284189fe840f1.zip |
free the folder_type
* e-shell-user-creatable-items-handler.c (free_menu_items): free
the folder_type
* e-splash.c (e_splash_new): Unref the pixbuf.
* evolution-shell-component.c (impl_finalize): Add some missing
frees.
(user_creatable_item_type_free): free the tooltip
svn path=/trunk/; revision=21859
Diffstat (limited to 'shell/e-splash.c')
-rw-r--r-- | shell/e-splash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-splash.c b/shell/e-splash.c index a6bb79e98c..7168e2b387 100644 --- a/shell/e-splash.c +++ b/shell/e-splash.c @@ -379,7 +379,7 @@ e_splash_new (void) new = g_object_new (e_splash_get_type (), NULL); e_splash_construct (new, splash_image_pixbuf); - /* g_object_unref (splash_image_pixbuf); */ + g_object_unref (splash_image_pixbuf); return GTK_WIDGET (new); } |