comparison plugins/timestamp.c @ 5314:1f901484599d

[gaim-migrate @ 5686] GTK_OBJECT -> G_OBJECT Also fixed a few compiler warnings. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 06 May 2003 05:48:03 +0000
parents 6d1707dc8c3d
children 2c4c975620f0
comparison
equal deleted inserted replaced
5313:8d118c2b03c9 5314:1f901484599d
89 hbox = gtk_hbox_new(TRUE, 5); 89 hbox = gtk_hbox_new(TRUE, 5);
90 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); 90 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);
91 91
92 button = gtk_button_new_with_mnemonic(_("_Apply")); 92 button = gtk_button_new_with_mnemonic(_("_Apply"));
93 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 5); 93 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 5);
94 g_signal_connect(GTK_OBJECT(button), "clicked", G_CALLBACK(set_timestamp), spinner); 94 g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(set_timestamp), spinner);
95 95
96 gtk_widget_show_all(ret); 96 gtk_widget_show_all(ret);
97 return ret; 97 return ret;
98 } 98 }
99 99