From 30e996eaead1eb45792dd90059aa65df76707b45 Mon Sep 17 00:00:00 2001 From: JosephMcc Date: Sun, 5 Feb 2017 02:10:26 -0800 Subject: [PATCH] info-bars: Don't use deprecated GtkStock --- xed/xed-io-error-info-bar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xed/xed-io-error-info-bar.c b/xed/xed-io-error-info-bar.c index beb87ef..baf0634 100644 --- a/xed/xed-io-error-info-bar.c +++ b/xed/xed-io-error-info-bar.c @@ -1121,7 +1121,7 @@ xed_invalid_character_info_bar_new (GFile *location) hbox_content = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 8); - image = gtk_image_new_from_stock ("gtk-dialog-warning", GTK_ICON_SIZE_DIALOG); + image = gtk_image_new_from_icon_name ("dialog-warning-symbolic", GTK_ICON_SIZE_DIALOG); gtk_box_pack_start (GTK_BOX (hbox_content), image, FALSE, FALSE, 0); gtk_widget_set_valign (image, GTK_ALIGN_START);