Mercurial > pidgin.yaz
changeset 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 | 7c7c7f5ce09d |
children | 28c0ebfd7a53 |
files | src/eventloop.c src/eventloop.h |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eventloop.c Sat Apr 24 12:19:43 2004 +0000 +++ b/src/eventloop.c Sat Apr 24 14:14:05 2004 +0000 @@ -50,7 +50,7 @@ return ops->input_add(source, condition, func, user_data); } -void +guint gaim_input_remove(guint tag) { GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops();
--- a/src/eventloop.h Sat Apr 24 12:19:43 2004 +0000 +++ b/src/eventloop.h Sat Apr 24 14:14:05 2004 +0000 @@ -70,7 +70,7 @@ * Removes an input handler. * @see gaim_input_remove, g_source_remove */ - void (*input_remove)(guint handle); + guint (*input_remove)(guint handle); }; /**************************************************************************/ @@ -117,7 +117,7 @@ * @param handle The handle of the input handler. Note that this is the return * value from gaim_input_add, <i>not</i> the file descriptor. */ -void gaim_input_remove(guint handle); +guint gaim_input_remove(guint handle); /*@}*/