diff options
author | BST 2002 Tony Gale <gale@gtk.org> | 2002-08-25 11:28:42 +0000 |
---|---|---|
committer | Tony Gale <gale@src.gnome.org> | 2002-08-25 11:28:42 +0000 |
commit | 992ea8e1d7a4673831b146e803578dda3a36d44c (patch) | |
tree | 869788fa12a1dc9bb945ef3611c94f2b4f3f4a84 /examples/tictactoe/tictactoe.c | |
parent | 2f31e7ed12099c8a6c54255867e9fc9dbb88dd89 (diff) | |
download | gtk+-992ea8e1d7a4673831b146e803578dda3a36d44c.tar.gz |
update packaging script for current tutorial
Sun Aug 25 11:58:27 BST 2002 Tony Gale <gale@gtk.org>
* docs/tutorial/package-db-tutorial.sh:
update packaging script for current tutorial
* docs/tutorial/images/*.eps: New Files
EPS versions of the tutorial images
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 33ba849edc..bb17d3f5f1 100644 --- a/examples/tictactoe/tictactoe.c +++ b/examples/tictactoe/tictactoe.c @@ -96,7 +96,7 @@ tictactoe_init (Tictactoe *ttt) gtk_table_attach_defaults (GTK_TABLE (table), ttt->buttons[i][j], i, i+1, j, j+1); g_signal_connect (G_OBJECT (ttt->buttons[i][j]), "toggled", - G_CALLBACK (tictactoe_toggle), ttt); + G_CALLBACK (tictactoe_toggle), (gpointer) ttt); gtk_widget_set_size_request (ttt->buttons[i][j], 20, 20); gtk_widget_show (ttt->buttons[i][j]); } |