From b14e1b5201694c68b51fd13545e303afa55b0328 Mon Sep 17 00:00:00 2001 From: Wolfgang Ulbrich Date: Fri, 22 Jan 2016 04:26:55 +0100 Subject: GTK3: fix deprecated GtkStock in libcaja-private --- libcaja-private/caja-autorun.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libcaja-private/caja-autorun.c') diff --git a/libcaja-private/caja-autorun.c b/libcaja-private/caja-autorun.c index 9409456b..5212813d 100644 --- a/libcaja-private/caja-autorun.c +++ b/libcaja-private/caja-autorun.c @@ -510,7 +510,7 @@ caja_autorun_prepare_combo_box (GtkWidget *combo_box, { gtk_list_store_append (list_store, &iter); pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), - GTK_STOCK_DIALOG_ERROR, + "dialog-error", icon_size, 0, NULL); @@ -532,7 +532,7 @@ caja_autorun_prepare_combo_box (GtkWidget *combo_box, { gtk_list_store_append (list_store, &iter); pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), - GTK_STOCK_DIALOG_QUESTION, + "dialog-question", icon_size, 0, NULL); @@ -548,7 +548,7 @@ caja_autorun_prepare_combo_box (GtkWidget *combo_box, gtk_list_store_append (list_store, &iter); pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), - GTK_STOCK_CLOSE, + "window-close", icon_size, 0, NULL); -- cgit v1.2.1