diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-01-17 11:41:03 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-01-17 17:52:07 -0500 |
commit | 25e6ba48e72157d0cee42a1a639398d368239baf (patch) | |
tree | 0d95a1b7bdb4403594844e7d477fa67dbb605b24 /gtk/gtkfilechooserbutton.c | |
parent | 57139820c97250ad22c8202c3924d69a05fe7edf (diff) | |
download | gtk+-25e6ba48e72157d0cee42a1a639398d368239baf.tar.gz |
Update all internal users of alternative button order
We'll keep this code around for now to not regress
on Windows, but avoid deprecation warnings.
Diffstat (limited to 'gtk/gtkfilechooserbutton.c')
-rw-r--r-- | gtk/gtkfilechooserbutton.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkfilechooserbutton.c b/gtk/gtkfilechooserbutton.c index 3cd560fd1a..21e19eb8ab 100644 --- a/gtk/gtkfilechooserbutton.c +++ b/gtk/gtkfilechooserbutton.c @@ -810,10 +810,12 @@ gtk_file_chooser_button_constructor (GType type, gtk_dialog_set_default_response (GTK_DIALOG (priv->dialog), GTK_RESPONSE_ACCEPT); +G_GNUC_BEGIN_IGNORE_DEPRECATIONS gtk_dialog_set_alternative_button_order (GTK_DIALOG (priv->dialog), GTK_RESPONSE_ACCEPT, GTK_RESPONSE_CANCEL, -1); +G_GNUC_END_IGNORE_DEPRECATIONS gtk_file_chooser_button_set_title (button, _(DEFAULT_TITLE)); } |