From 83b7801e496f13ad7ecd615ce8fcd09c1fef44d4 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Thu, 27 May 2010 09:23:26 +0100 Subject: [PATCH] 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. --- tests/interactive/test-clip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/interactive/test-clip.c b/tests/interactive/test-clip.c index dbfcea1..299fef4 100644 --- a/tests/interactive/test-clip.c +++ b/tests/interactive/test-clip.c @@ -260,7 +260,7 @@ free_clips (CallbackData *data) data->clips = NULL; } -static gpointer +static gboolean on_key_press (ClutterActor *stage, ClutterKeyEvent *event, CallbackData *data) { -- 2.7.4