diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-03-02 07:58:05 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-03-02 07:58:05 +0100 |
commit | e8e95d4c5ee4c7c78971597c53f0b6e3f0e81b7a (patch) | |
tree | e0af9394513f9dcb571e80f39456a1fda1c1533b /gtk/gtkprintunixdialog.c | |
parent | 483a5a9e1a55f01cbd20b7bbd301ee59efaa4c64 (diff) | |
download | gtk+-e8e95d4c5ee4c7c78971597c53f0b6e3f0e81b7a.tar.gz |
Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT)
Use new API instead: gtk_widget_set_can_default ()
Diffstat (limited to 'gtk/gtkprintunixdialog.c')
-rw-r--r-- | gtk/gtkprintunixdialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprintunixdialog.c b/gtk/gtkprintunixdialog.c index bee86318ef..2442ab76a1 100644 --- a/gtk/gtkprintunixdialog.c +++ b/gtk/gtkprintunixdialog.c @@ -414,7 +414,7 @@ add_custom_button_to_dialog (GtkDialog *dialog, GtkWidget *button = NULL; button = gtk_button_new_with_mnemonic (mnemonic_label); - GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT); + gtk_widget_set_can_default (button, TRUE); gtk_button_set_image (GTK_BUTTON (button), gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_BUTTON)); |