No more mushroom

svn path=/trunk/; revision=20745
This commit is contained in:
Matthias Clasen
2008-07-03 17:29:39 +00:00
parent 528f7b7336
commit 075d84b88a
7 changed files with 19 additions and 4 deletions

View File

@ -396,10 +396,10 @@ create_icon_view (void)
gtk_frame_set_shadow_type (GTK_FRAME (widget), GTK_SHADOW_IN);
list_store = gtk_list_store_new (2, G_TYPE_STRING, GDK_TYPE_PIXBUF);
gtk_list_store_append (list_store, &iter);
pixbuf = gdk_pixbuf_new_from_file ("gnome-gmush.png", NULL);
pixbuf = gdk_pixbuf_new_from_file ("folder.png", NULL);
gtk_list_store_set (list_store, &iter, 0, "One", 1, pixbuf, -1);
gtk_list_store_append (list_store, &iter);
pixbuf = gdk_pixbuf_new_from_file ("gnome-foot.png", NULL);
pixbuf = gdk_pixbuf_new_from_file ("gnome.png", NULL);
gtk_list_store_set (list_store, &iter, 0, "Two", 1, pixbuf, -1);
icon_view = gtk_icon_view_new();