From: Carlos Garcia Campos Date: Wed, 22 Dec 2010 16:34:59 +0000 (+0100) Subject: shell: Use gtk_widget_render_icon_pixbuf() in EvSidebarAnnotations X-Git-Tag: EVINCE_2_91_4~4 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=0b3d1902059923fbea333ea7a889066308ee349c;p=evince.git shell: Use gtk_widget_render_icon_pixbuf() in EvSidebarAnnotations --- diff --git a/shell/ev-sidebar-annotations.c b/shell/ev-sidebar-annotations.c index ec544fa5..787c9fb3 100644 --- a/shell/ev-sidebar-annotations.c +++ b/shell/ev-sidebar-annotations.c @@ -425,18 +425,16 @@ job_finished_callback (EvJobAnnots *job, if (EV_IS_ANNOTATION_TEXT (annot)) { if (!text_icon) { /* FIXME: use a better icon than EDIT */ - text_icon = gtk_widget_render_icon (priv->tree_view, - GTK_STOCK_EDIT, - GTK_ICON_SIZE_BUTTON, - NULL); + text_icon = gtk_widget_render_icon_pixbuf (priv->tree_view, + GTK_STOCK_EDIT, + GTK_ICON_SIZE_BUTTON); } pixbuf = text_icon; } else if (EV_IS_ANNOTATION_ATTACHMENT (annot)) { if (!attachment_icon) { - attachment_icon = gtk_widget_render_icon (priv->tree_view, - EV_STOCK_ATTACHMENT, - GTK_ICON_SIZE_BUTTON, - NULL); + attachment_icon = gtk_widget_render_icon_pixbuf (priv->tree_view, + EV_STOCK_ATTACHMENT, + GTK_ICON_SIZE_BUTTON); } pixbuf = attachment_icon; }