diff options
author | Christian Persch <[email protected]> | 2012-06-12 20:07:20 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-04-08 13:07:52 +0200 |
commit | c1a56c96b724c3cf380a61b8e95fde1839a34f54 (patch) | |
tree | 04fefe0633fb36539cce9ac23e9537bf3b40073d /thumbnailer/atril-thumbnailer.c | |
parent | e5c8ce732dc1907f975edd11112a6f0222f70a53 (diff) | |
download | atril-c1a56c96b724c3cf380a61b8e95fde1839a34f54.tar.bz2 atril-c1a56c96b724c3cf380a61b8e95fde1839a34f54.tar.xz |
thumbnailer: Remove unused code
The code to overlay an icon is unused since commit
https://git.gnome.org/browse/evince/commit/?id=808285c
origin commit:
https://git.gnome.org/browse/evince/commit/?id=171918f
Diffstat (limited to 'thumbnailer/atril-thumbnailer.c')
-rw-r--r-- | thumbnailer/atril-thumbnailer.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/thumbnailer/atril-thumbnailer.c b/thumbnailer/atril-thumbnailer.c index 6e189040..a6875386 100644 --- a/thumbnailer/atril-thumbnailer.c +++ b/thumbnailer/atril-thumbnailer.c @@ -174,34 +174,6 @@ atril_thumbnail_pngenc_get (EvDocument *document, const char *thumbnail, int siz g_object_unref (page); if (pixbuf != NULL) { - const char *overlaid_icon_name = NULL; - - if (overlaid_icon_name) { - GdkPixbuf *overlaid_pixbuf; - - gchar *overlaid_icon_path = g_strdup_printf ("%s/%s", ATRILDATADIR, overlaid_icon_name); - overlaid_pixbuf = gdk_pixbuf_new_from_file (overlaid_icon_path, NULL); - g_free (overlaid_icon_path); - if (overlaid_pixbuf != NULL) { - int delta_height, delta_width; - - delta_width = gdk_pixbuf_get_width (pixbuf) - - gdk_pixbuf_get_width (overlaid_pixbuf); - delta_height = gdk_pixbuf_get_height (pixbuf) - - gdk_pixbuf_get_height (overlaid_pixbuf); - - gdk_pixbuf_composite (overlaid_pixbuf, pixbuf, - delta_width, delta_height, - gdk_pixbuf_get_width (overlaid_pixbuf), - gdk_pixbuf_get_height (overlaid_pixbuf), - delta_width, delta_height, - 1, 1, - GDK_INTERP_NEAREST, 100); - - g_object_unref (overlaid_pixbuf); - } - } - if (gdk_pixbuf_save (pixbuf, thumbnail, "png", NULL, NULL)) { g_object_unref (pixbuf); return TRUE; |