diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-01-22 04:26:55 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-01-22 04:26:55 +0100 |
commit | b14e1b5201694c68b51fd13545e303afa55b0328 (patch) | |
tree | dfde21a5b77bbed322d5049ed06de35ad4258efa /libcaja-private/caja-autorun.c | |
parent | ff6a32e8002be01e253a61a4abb9b61961252ddd (diff) | |
download | caja-b14e1b5201694c68b51fd13545e303afa55b0328.tar.bz2 caja-b14e1b5201694c68b51fd13545e303afa55b0328.tar.xz |
GTK3: fix deprecated GtkStock in libcaja-private
Diffstat (limited to 'libcaja-private/caja-autorun.c')
-rw-r--r-- | libcaja-private/caja-autorun.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); |