diff options
author | Pablo Barciela <[email protected]> | 2018-02-17 00:22:33 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-02-20 09:58:55 +0100 |
commit | 1d82cc7c517fd84e6428ebb7ef29583240176af9 (patch) | |
tree | b1f63f9625746c76ec4ac3879e46cada200aef95 /plugins/filebrowser/pluma-file-browser-plugin.c | |
parent | 12e54c41f48a55cd213d2b004d0c3c2cb0a535c3 (diff) | |
download | pluma-1d82cc7c517fd84e6428ebb7ef29583240176af9.tar.bz2 pluma-1d82cc7c517fd84e6428ebb7ef29583240176af9.tar.xz |
avoid deprecated GtkButton:use-stock
Diffstat (limited to 'plugins/filebrowser/pluma-file-browser-plugin.c')
-rw-r--r-- | plugins/filebrowser/pluma-file-browser-plugin.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/filebrowser/pluma-file-browser-plugin.c b/plugins/filebrowser/pluma-file-browser-plugin.c index 775d7b36..e3a5d1c9 100644 --- a/plugins/filebrowser/pluma-file-browser-plugin.c +++ b/plugins/filebrowser/pluma-file-browser-plugin.c @@ -1140,9 +1140,7 @@ on_confirm_no_trash_cb (PlumaFileBrowserWidget * widget, result = pluma_file_browser_utils_confirmation_dialog (window, GTK_MESSAGE_QUESTION, message, - secondary, - "gtk-delete", - NULL); + secondary); g_free (secondary); return result; @@ -1175,9 +1173,7 @@ on_confirm_delete_cb (PlumaFileBrowserWidget *widget, result = pluma_file_browser_utils_confirmation_dialog (PLUMA_WINDOW (data->window), GTK_MESSAGE_QUESTION, message, - secondary, - "gtk-delete", - NULL); + secondary); g_free (message); |