analysis: Fix the "key-press-event" callback signature

We were returning FALSE in a function declared as returning a gpointer.
Turns out that the function should return a gboolea instead.
This commit is contained in:
Damien Lespiau 2010-05-27 09:23:26 +01:00
parent ec59af290c
commit 83b7801e49

View File

@ -260,7 +260,7 @@ free_clips (CallbackData *data)
data->clips = NULL;
}
static gpointer
static gboolean
on_key_press (ClutterActor *stage, ClutterKeyEvent *event,
CallbackData *data)
{