diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-01-17 11:26:11 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-01-17 17:52:07 -0500 |
commit | abe29dd18862beba73309596dbb9e5b0587e5f16 (patch) | |
tree | fc0a33439c34f01e0e66c788505bcc2a37df7550 /gtk/gtkcustompaperunixdialog.c | |
parent | 32a290129417772954926cfdc42adcdfd68b2a94 (diff) | |
download | gtk+-abe29dd18862beba73309596dbb9e5b0587e5f16.tar.gz |
Update all internal users of gtk_dialog_get_action_area
Some of these should be revisited and fixed. For now,
just avoid the deprecation warnings.
Diffstat (limited to 'gtk/gtkcustompaperunixdialog.c')
-rw-r--r-- | gtk/gtkcustompaperunixdialog.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkcustompaperunixdialog.c b/gtk/gtkcustompaperunixdialog.c index 6898f6f986..09fb139dad 100644 --- a/gtk/gtkcustompaperunixdialog.c +++ b/gtk/gtkcustompaperunixdialog.c @@ -1015,7 +1015,9 @@ populate_dialog (GtkCustomPaperUnixDialog *dialog) GtkStyleContext *context; content_area = gtk_dialog_get_content_area (cpu_dialog); +G_GNUC_BEGIN_IGNORE_DEPRECATIONS action_area = gtk_dialog_get_action_area (cpu_dialog); +G_GNUC_END_IGNORE_DEPRECATIONS gtk_container_set_border_width (GTK_CONTAINER (dialog), 5); gtk_box_set_spacing (GTK_BOX (content_area), 2); /* 2 * 5 + 2 = 12 */ |