diff options
author | raveit65 <[email protected]> | 2017-05-12 15:54:45 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-05-25 20:13:59 +0200 |
commit | 7a8333fdbf00ea4d2d9fffb9e39da5addbe0d874 (patch) | |
tree | e8dc4f88472ad0dc1f1d63deb35e69304dd1558c | |
parent | f9389e81499fe03d61109d7136c544299792291f (diff) | |
download | pluma-7a8333fdbf00ea4d2d9fffb9e39da5addbe0d874.tar.bz2 pluma-7a8333fdbf00ea4d2d9fffb9e39da5addbe0d874.tar.xz |
progress-message-area: fix one GtkStock deprecation
-rw-r--r-- | pluma/pluma-progress-message-area.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pluma/pluma-progress-message-area.c b/pluma/pluma-progress-message-area.c index b1284edc..802412cd 100644 --- a/pluma/pluma-progress-message-area.c +++ b/pluma/pluma-progress-message-area.c @@ -141,7 +141,7 @@ pluma_progress_message_area_init (PlumaProgressMessageArea *area) gtk_widget_show (hbox); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); - area->priv->image = gtk_image_new_from_icon_name (GTK_STOCK_MISSING_IMAGE, + area->priv->image = gtk_image_new_from_icon_name ("image-missing", GTK_ICON_SIZE_SMALL_TOOLBAR); gtk_widget_show (area->priv->image); gtk_widget_set_halign (area->priv->image, GTK_ALIGN_CENTER); |