comparison pidgin/gtkeventloop.c @ 15668:d44fca5248a1

Change out source_remove and input_remove eventloop functions to return booleans instead of guints
author Mark Doliner <mark@kingant.net>
date Tue, 20 Feb 2007 19:36:08 +0000
parents 026f9c6cc942
children 14d85ee22d78
comparison
equal deleted inserted replaced
15667:67ecb6a934a8 15668:d44fca5248a1
114 } 114 }
115 115
116 static GaimEventLoopUiOps eventloop_ops = 116 static GaimEventLoopUiOps eventloop_ops =
117 { 117 {
118 g_timeout_add, 118 g_timeout_add,
119 (guint (*)(guint))g_source_remove, 119 g_source_remove,
120 pidgin_input_add, 120 pidgin_input_add,
121 (guint (*)(guint))g_source_remove 121 g_source_remove
122 }; 122 };
123 123
124 GaimEventLoopUiOps * 124 GaimEventLoopUiOps *
125 pidgin_eventloop_get_ui_ops(void) 125 pidgin_eventloop_get_ui_ops(void)
126 { 126 {