Mercurial > pidgin
comparison src/eventloop.c @ 8797:0f2af117d5d3
[gaim-migrate @ 9559]
Making gaim_input_remove return a guint for no reason other than
consistency.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Sat, 24 Apr 2004 14:14:05 +0000 |
| parents | 98c9a35541ed |
| children | 62fc579810f4 |
comparison
equal
deleted
inserted
replaced
| 8796:7c7c7f5ce09d | 8797:0f2af117d5d3 |
|---|---|
| 48 GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops(); | 48 GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops(); |
| 49 | 49 |
| 50 return ops->input_add(source, condition, func, user_data); | 50 return ops->input_add(source, condition, func, user_data); |
| 51 } | 51 } |
| 52 | 52 |
| 53 void | 53 guint |
| 54 gaim_input_remove(guint tag) | 54 gaim_input_remove(guint tag) |
| 55 { | 55 { |
| 56 GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops(); | 56 GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops(); |
| 57 | 57 |
| 58 return ops->input_remove(tag); | 58 return ops->input_remove(tag); |
