diff options
author | BST 2002 Tony Gale <gale@gtk.org> | 2002-08-24 11:53:26 +0000 |
---|---|---|
committer | Tony Gale <gale@src.gnome.org> | 2002-08-24 11:53:26 +0000 |
commit | 1bfcf9ba16ca0ff12ae08f1bdf0a891f4ad73457 (patch) | |
tree | 8a4daa7edd4a34ce5059389b80e5d39f0352d6a6 /examples/fixed | |
parent | c22b614565cd30079a0eaf7534f1a3f4f2819c6b (diff) | |
download | gtk+-1bfcf9ba16ca0ff12ae08f1bdf0a891f4ad73457.tar.gz |
update g_connect_signal usage
Sat Aug 24 12:46:37 BST 2002 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml, examples/*:
update g_connect_signal usage
* docs/faq/gtk-faq.html: spelling/grammar fixes
Diffstat (limited to 'examples/fixed')
-rw-r--r-- | examples/fixed/fixed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/fixed/fixed.c b/examples/fixed/fixed.c index dba62e1358..3a58beeb53 100644 --- a/examples/fixed/fixed.c +++ b/examples/fixed/fixed.c @@ -53,7 +53,7 @@ int main( int argc, * function move_button() passing it the Fixed Container as its * argument. */ g_signal_connect (G_OBJECT (button), "clicked", - G_CALLBACK (move_button), fixed); + G_CALLBACK (move_button), (gpointer) fixed); /* This packs the button into the fixed containers window. */ gtk_fixed_put (GTK_FIXED (fixed), button, i*50, i*50); |