comparison src/gtkprefs.c @ 6179:16e384bb7fbf

[gaim-migrate @ 6664] Core/UI split the core initialization and shutdown. I think I got all the bugs worked out. It's looking nice and stable here, but if it causes CVS to go to hell for everyone.. er, try to fix it or let me know :) I don't have this in patch form. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 17 Jul 2003 10:35:43 +0000
parents aef34b0c175f
children 1440cfa8b1e1
comparison
equal deleted inserted replaced
6178:06e28a7b72c3 6179:16e384bb7fbf
1479 static void 1479 static void
1480 auto_resp_changed_cb(const char *name, GaimPrefType type, gpointer value, 1480 auto_resp_changed_cb(const char *name, GaimPrefType type, gpointer value,
1481 gpointer data) 1481 gpointer data)
1482 { 1482 {
1483 GtkWidget *hbox = data; 1483 GtkWidget *hbox = data;
1484 gboolean enabled = value; 1484 gboolean enabled = (gboolean)value;
1485 1485
1486 gtk_widget_set_sensitive(hbox, enabled); 1486 gtk_widget_set_sensitive(hbox, enabled);
1487 } 1487 }
1488 1488
1489 GtkWidget *away_page() { 1489 GtkWidget *away_page() {