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 /examples/progressbar | |
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 'examples/progressbar')
-rw-r--r-- | examples/progressbar/progressbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/progressbar/progressbar.c b/examples/progressbar/progressbar.c index fb219d0b82..525cbba1bd 100644 --- a/examples/progressbar/progressbar.c +++ b/examples/progressbar/progressbar.c @@ -183,7 +183,7 @@ int main( int argc, gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0); /* This makes it so the button is the default. */ - GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT); + gtk_widget_set_can_default (button, TRUE); /* This grabs this button to be the default button. Simply hitting * the "Enter" key will cause this button to activate. */ |