anjuta r4566 - in trunk: . plugins/file-manager
- From: jhs svn gnome org
- To: svn-commits-list gnome org
- Subject: anjuta r4566 - in trunk: . plugins/file-manager
- Date: Sat, 10 Jan 2009 22:27:00 +0000 (UTC)
Author: jhs
Date: Sat Jan 10 22:27:00 2009
New Revision: 4566
URL: http://svn.gnome.org/viewvc/anjuta?rev=4566&view=rev
Log:
2009-01-10 Carl-Anton Ingmarsson <ca ingmarsson gmail com>
reviewed by: Johannes Schmid <jhs gnome org>
* plugins/file-manager/file-model.c
#566943 â Icons are not not found
Modified:
trunk/ChangeLog
trunk/plugins/file-manager/file-model.c
Modified: trunk/plugins/file-manager/file-model.c
==============================================================================
--- trunk/plugins/file-manager/file-model.c (original)
+++ trunk/plugins/file-manager/file-model.c Sat Jan 10 22:27:00 2009
@@ -122,20 +122,27 @@
{
GtkTreeStore* store = GTK_TREE_STORE(model);
gboolean is_dir = FALSE;
- const gchar** icon_names;
+ gchar** icon_names;
GtkIconInfo* icon_info;
GIcon* icon;
- GdkPixbuf* pixbuf;
+ GdkPixbuf* pixbuf = NULL;
gchar* display_name;
icon = g_file_info_get_icon(file_info);
g_object_get (icon, "names", &icon_names, NULL);
- icon_info = gtk_icon_theme_choose_icon (gtk_icon_theme_get_default(),
- icon_names,
+
+ g_object_unref (icon);
+
+ if ((icon_info = gtk_icon_theme_choose_icon (gtk_icon_theme_get_default(),
+ (const gchar **)icon_names,
ICON_SIZE,
- GTK_ICON_LOOKUP_GENERIC_FALLBACK);
- pixbuf = gtk_icon_info_load_icon (icon_info, NULL);
- gtk_icon_info_free(icon_info);
+ GTK_ICON_LOOKUP_GENERIC_FALLBACK)))
+ {
+ pixbuf = gtk_icon_info_load_icon (icon_info, NULL);
+ gtk_icon_info_free(icon_info);
+ }
+
+ g_strfreev (icon_names);
if (g_file_info_get_file_type(file_info) == G_FILE_TYPE_DIRECTORY)
is_dir = TRUE;
@@ -154,7 +161,8 @@
if (is_dir)
file_model_add_dummy(model, iter);
- g_object_unref (pixbuf);
+ if (pixbuf)
+ g_object_unref (pixbuf);
g_free(display_name);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]