comparison src/gtkdebug.c @ 6478:338147ea6896

[gaim-migrate @ 6991] Some compiler warning fixes for 64-bit platforms from Robot101. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 15 Aug 2003 22:16:44 +0000
parents 8f94cce8faa5
children 083d1e4a9c78
comparison
equal deleted inserted replaced
6477:a224dc78d10a 6478:338147ea6896
103 103
104 static void 104 static void
105 timestamps_pref_cb(const char *name, GaimPrefType type, gpointer value, 105 timestamps_pref_cb(const char *name, GaimPrefType type, gpointer value,
106 gpointer data) 106 gpointer data)
107 { 107 {
108 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(data), (gboolean)value); 108 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(data), GPOINTER_TO_INT(value));
109 } 109 }
110 110
111 static DebugWindow * 111 static DebugWindow *
112 debug_window_new(void) 112 debug_window_new(void)
113 { 113 {