aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorTotalCaesar659 <x24cm5b8c54q6szxw@yandex.ru>2017-09-18 18:31:50 +0300
committerLeandro Pereira <leandro@hardinfo.org>2017-09-21 07:18:03 -0700
commit1af9bacca6a6685e04eeda227f3a8dfa71f20046 (patch)
tree4f12867c64e80abbc0f16a10f77ec0547bcf97c5 /shell
parent20f8ce6c30abcd837fd0255af9bc4a0cbd6c7a4a (diff)
Do not use deprecated GtkDialog method when building for GTK+ 3
Diffstat (limited to 'shell')
-rw-r--r--shell/report.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/report.c b/shell/report.c
index 398af323..369bee36 100644
--- a/shell/report.c
+++ b/shell/report.c
@@ -918,7 +918,7 @@ static ReportDialog
* gtk_dialog_get_action_area has been deprecated since version 3.12 and should not be used in newly-written code.
* Direct access to the action area is discouraged; use gtk_dialog_add_button(), etc.
*/
- dialog1_action_area = gtk_dialog_get_action_area(GTK_DIALOG(dialog));
+ dialog1_action_area = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
#else
dialog1_action_area = GTK_DIALOG(dialog)->action_area;
#endif