diff options
author | Pablo Barciela <[email protected]> | 2018-02-08 17:01:16 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-02-09 18:30:24 +0100 |
commit | 36bcd30e3fb22d3c8c57c968fccfafe0c011e70f (patch) | |
tree | f20804d9619474a31ff1661276b12f37467a55e2 /src/openfiles.cpp | |
parent | 77f8101320655020044cde5dfd0cd29bab98f8ce (diff) | |
download | mate-system-monitor-36bcd30e3fb22d3c8c57c968fccfafe0c011e70f.tar.bz2 mate-system-monitor-36bcd30e3fb22d3c8c57c968fccfafe0c011e70f.tar.xz |
avoid deprecated GtkStock
Diffstat (limited to 'src/openfiles.cpp')
-rw-r--r-- | src/openfiles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openfiles.cpp b/src/openfiles.cpp index 10f164c..f972c51 100644 --- a/src/openfiles.cpp +++ b/src/openfiles.cpp @@ -323,7 +323,7 @@ create_single_openfiles_dialog (GtkTreeModel *model, GtkTreePath *path, openfilesdialog = gtk_dialog_new_with_buttons (_("Open Files"), NULL, GTK_DIALOG_DESTROY_WITH_PARENT, - GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, + "gtk-close", GTK_RESPONSE_CLOSE, NULL); gtk_window_set_resizable (GTK_WINDOW (openfilesdialog), TRUE); gtk_window_set_default_size (GTK_WINDOW (openfilesdialog), 575, 400); |