summaryrefslogtreecommitdiff
path: root/mate-panel/libpanel-util
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2018-01-23 20:55:01 +0100
committerlukefromdc <[email protected]>2018-01-25 20:28:18 -0500
commit1f72d441289df987dd7fbb528089f71e719e3c46 (patch)
treeb5635415641d0d865470d7da3d7dd602d8ba28c7 /mate-panel/libpanel-util
parent7f99492c269f541c81e4f36742ecc3f0b4ebac04 (diff)
downloadmate-panel-1f72d441289df987dd7fbb528089f71e719e3c46.tar.bz2
mate-panel-1f72d441289df987dd7fbb528089f71e719e3c46.tar.xz
avoid deprecated GtkStock
Diffstat (limited to 'mate-panel/libpanel-util')
-rw-r--r--mate-panel/libpanel-util/panel-icon-chooser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-panel/libpanel-util/panel-icon-chooser.c b/mate-panel/libpanel-util/panel-icon-chooser.c
index 98dcef8e..5b5ca08a 100644
--- a/mate-panel/libpanel-util/panel-icon-chooser.c
+++ b/mate-panel/libpanel-util/panel-icon-chooser.c
@@ -381,9 +381,9 @@ _panel_icon_chooser_clicked (GtkButton *button)
filechooser = gtk_file_chooser_dialog_new (_("Choose an icon"),
parent,
GTK_FILE_CHOOSER_ACTION_OPEN,
- GTK_STOCK_CANCEL,
+ "gtk-cancel",
GTK_RESPONSE_CANCEL,
- GTK_STOCK_OPEN,
+ "gtk-open",
GTK_RESPONSE_ACCEPT,
NULL);
panel_gtk_file_chooser_add_image_preview (GTK_FILE_CHOOSER (filechooser));