diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-09-27 19:09:46 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-09-27 19:09:46 +0800 |
commit | 3e1c3f7c236a3e7586c771df2df1732dc015fb51 (patch) | |
tree | a94608c9b6ee5743c4bb270c0fd258951494fcbd /lib/ephy-gui.c | |
parent | eed2331e611eb281440c1bcb5f76b2e547f1e0a7 (diff) | |
download | gsoc2013-epiphany-3e1c3f7c236a3e7586c771df2df1732dc015fb51.tar gsoc2013-epiphany-3e1c3f7c236a3e7586c771df2df1732dc015fb51.tar.gz gsoc2013-epiphany-3e1c3f7c236a3e7586c771df2df1732dc015fb51.tar.bz2 gsoc2013-epiphany-3e1c3f7c236a3e7586c771df2df1732dc015fb51.tar.lz gsoc2013-epiphany-3e1c3f7c236a3e7586c771df2df1732dc015fb51.tar.xz gsoc2013-epiphany-3e1c3f7c236a3e7586c771df2df1732dc015fb51.tar.zst gsoc2013-epiphany-3e1c3f7c236a3e7586c771df2df1732dc015fb51.zip |
Simpler implementation.
2003-09-27 Marco Pesenti Gritti <marco@gnome.org>
* lib/ephy-gui.c: (ephy_gui_get_pixbuf_from_mime_type):
Simpler implementation.
* lib/widgets/ephy-spinner.c: (ephy_spinner_load_images):
* src/ephy-shell.c: (ephy_shell_init):
Pass 0 as flags
Diffstat (limited to 'lib/ephy-gui.c')
-rw-r--r-- | lib/ephy-gui.c | 33 |
1 files changed, 2 insertions, 31 deletions
diff --git a/lib/ephy-gui.c b/lib/ephy-gui.c index af959b5aa..9393fc295 100644 --- a/lib/ephy-gui.c +++ b/lib/ephy-gui.c @@ -143,9 +143,7 @@ ephy_gui_get_pixbuf_from_mime_type (const char *mime_type, int size) { GdkPixbuf *pixbuf; - GtkIconInfo *icon_info; GtkIconTheme *icon_theme; - const char *icon; char *icon_name; icon_name = make_mime_name (mime_type); @@ -153,35 +151,8 @@ ephy_gui_get_pixbuf_from_mime_type (const char *mime_type, icon_theme = gtk_icon_theme_get_default (); g_return_val_if_fail (icon_theme != NULL, NULL); - icon_info = gtk_icon_theme_lookup_icon - (icon_theme, icon_name, size, -1); - g_free (icon_name); - - /* try without specific size */ - if (icon_info == NULL) - { - icon_info = gtk_icon_theme_lookup_icon - (icon_theme, icon_name, -1, -1); - } - - /* no icon found */ - if (icon_info == NULL) return NULL; - - icon = gtk_icon_info_get_filename (icon_info); - pixbuf = gdk_pixbuf_new_from_file (icon, NULL); - g_return_val_if_fail (pixbuf != NULL, NULL); - - if (size != gtk_icon_info_get_base_size (icon_info)) - { - GdkPixbuf *tmp; - - tmp = gdk_pixbuf_scale_simple (pixbuf, size, size, - GDK_INTERP_BILINEAR); - g_object_unref (pixbuf); - pixbuf = tmp; - } - - gtk_icon_info_free (icon_info); + pixbuf = gtk_icon_theme_load_icon (icon_theme, icon_name, + size, 0, NULL); return pixbuf; } |