diff options
author | GMT 1999 Tony Gale <gale@gtk.org> | 1999-01-28 10:35:40 +0000 |
---|---|---|
committer | Tony Gale <gale@src.gnome.org> | 1999-01-28 10:35:40 +0000 |
commit | a2dafdfc88dbaaaf67c3971372da4a5b8b63ec2b (patch) | |
tree | b16f8940a58bbe8d25bcf5f3112fbcb3c682952b /examples/tictactoe/tictactoe.c | |
parent | a70005873773b8b3214b2a54818990db517fbaa9 (diff) | |
download | gtk+-a2dafdfc88dbaaaf67c3971372da4a5b8b63ec2b.tar.gz |
- Replace all uses of deprecated functions. - Replace menufactory example
Thu Jan 28 10:16:28 GMT 1999 Tony Gale <gale@gtk.org>
* docs/gtk_tut.sgml:
- Replace all uses of deprecated functions.
- Replace menufactory example with itemfactory example
from Nick Scott <mendigo@geocities.com>
- Minor bug fixes in the examples.
Diffstat (limited to 'examples/tictactoe/tictactoe.c')
-rw-r--r-- | examples/tictactoe/tictactoe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tictactoe/tictactoe.c b/examples/tictactoe/tictactoe.c index 93b1633ad0..530d72e3d6 100644 --- a/examples/tictactoe/tictactoe.c +++ b/examples/tictactoe/tictactoe.c @@ -115,7 +115,7 @@ tictactoe_clear (Tictactoe *ttt) for (j=0;j<3;j++) { gtk_signal_handler_block_by_data (GTK_OBJECT(ttt->buttons[i][j]), ttt); - gtk_toggle_button_set_state (GTK_TOGGLE_BUTTON (ttt->buttons[i][j]), + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (ttt->buttons[i][j]), FALSE); gtk_signal_handler_unblock_by_data (GTK_OBJECT(ttt->buttons[i][j]), ttt); } |