From f5b71965c94a481cd07b91036487642897d00fb4 Mon Sep 17 00:00:00 2001 From: azundris Date: Wed, 8 Oct 2003 15:04:54 +0000 Subject: [PATCH] raster: please advise which semantics we'll stick with. SVN revision: 7515 --- legacy/ecore/src/lib/ecore/ecore_events.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/legacy/ecore/src/lib/ecore/ecore_events.c b/legacy/ecore/src/lib/ecore/ecore_events.c index e89306a276..eccbc297d2 100644 --- a/legacy/ecore/src/lib/ecore/ecore_events.c +++ b/legacy/ecore/src/lib/ecore/ecore_events.c @@ -32,11 +32,11 @@ static void *ecore_raw_event_event = NULL; * structure that is specific to that event type, and a data pointer that is * provided in this call as the @p data parameter. * - * When the callback @p func is called, it must return 1 or 0. If it returns - * 1, It will keep being called as per normal, when events come into the event - * queue. If it returns 0, it will be removed from the list of event handlers - * and be destroyed. If this happens the event handler object returned is no - * longer valid, and the handler will not be called again after it returns 0. + * When the callback @p func is called, it must return 1 or 0. If it returns + * 1, It will keep being called as per normal, when events come into the event + * queue. If it returns 0, it will be removed from the list of event handlers + * and be destroyed. If this happens the event handler object returned is no + * longer valid, and the handler will not be called again after it returns 0. * * @code * #include @@ -433,7 +433,7 @@ _ecore_event_call(void) if (eh->type == e->type) { if (!eh->func(eh->data, e->type, e->event)) - break; + break; /* 0 == "call no further handlers" */ } } }