summaryrefslogtreecommitdiff
path: root/mate-dictionary/src/gdict-applet.c
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-01-22 11:52:55 +0300
committermonsta <[email protected]>2016-01-22 13:53:32 +0300
commit61fc4065c4cdcb49aeab3a38a9da95a043260f50 (patch)
tree8635278a4cf2f5a5f7d23581633ffa62852c37ce /mate-dictionary/src/gdict-applet.c
parent386f747d82bdd2607896a1c80dff5dfaaec1aa23 (diff)
downloadmate-utils-61fc4065c4cdcb49aeab3a38a9da95a043260f50.tar.bz2
mate-utils-61fc4065c4cdcb49aeab3a38a9da95a043260f50.tar.xz
dictionary: use gtk_image_new_from_icon_name in both GTK+ builds
Diffstat (limited to 'mate-dictionary/src/gdict-applet.c')
-rw-r--r--mate-dictionary/src/gdict-applet.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/mate-dictionary/src/gdict-applet.c b/mate-dictionary/src/gdict-applet.c
index 3e89c272..726ad85f 100644
--- a/mate-dictionary/src/gdict-applet.c
+++ b/mate-dictionary/src/gdict-applet.c
@@ -575,9 +575,8 @@ gdict_applet_draw (GdictApplet *applet)
priv->image = gtk_image_new ();
gtk_image_set_pixel_size (GTK_IMAGE (priv->image), priv->size - 10);
- gtk_image_set_from_stock (GTK_IMAGE (priv->image),
- GTK_STOCK_MISSING_IMAGE,
- -1);
+ gtk_image_set_from_icon_name (GTK_IMAGE (priv->image),
+ "image-missing", -1);
gtk_box_pack_start (GTK_BOX (hbox), priv->image, FALSE, FALSE, 0);
gtk_widget_show (priv->image);