summaryrefslogtreecommitdiff
path: root/examples/radiobuttons
diff options
context:
space:
mode:
authorBST 2002 Tony Gale <gale@gtk.org>2002-08-24 11:53:26 +0000
committerTony Gale <gale@src.gnome.org>2002-08-24 11:53:26 +0000
commit1bfcf9ba16ca0ff12ae08f1bdf0a891f4ad73457 (patch)
tree8a4daa7edd4a34ce5059389b80e5d39f0352d6a6 /examples/radiobuttons
parentc22b614565cd30079a0eaf7534f1a3f4f2819c6b (diff)
downloadgtk+-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/radiobuttons')
-rw-r--r--examples/radiobuttons/radiobuttons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/radiobuttons/radiobuttons.c b/examples/radiobuttons/radiobuttons.c
index 6d1c27096b..b3fe809a66 100644
--- a/examples/radiobuttons/radiobuttons.c
+++ b/examples/radiobuttons/radiobuttons.c
@@ -67,7 +67,7 @@ int main( int argc,
button = gtk_button_new_with_label ("close");
g_signal_connect_swapped (G_OBJECT (button), "clicked",
G_CALLBACK (close_application),
- window);
+ G_OBJECT (window));
gtk_box_pack_start (GTK_BOX (box2), button, TRUE, TRUE, 0);
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
gtk_widget_grab_default (button);