From 59f4df5dfd88bab98295840d2dd910ac8edcd78c Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 21 Aug 2007 15:48:44 +0000 Subject: [PATCH] Correctly initialise the multiple clicks variables --- clutter/clutter-event.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clutter/clutter-event.c b/clutter/clutter-event.c index 83c6a90..e0650fc 100644 --- a/clutter/clutter-event.c +++ b/clutter/clutter-event.c @@ -40,10 +40,10 @@ */ /* multiple button click detection */ -static guint32 button_click_time[2] = {0, 0}; -static guint32 button_number[2] = {0, -1}; -static gint button_x[2] = {0, 0}; -static gint button_y[2] = {0, 0};; +static guint32 button_click_time[2] = { 0, 0 }; +static guint32 button_number[2] = { -1, -1 }; +static gint button_x[2] = { 0, 0 }; +static gint button_y[2] = { 0, 0 }; /** * clutter_event_type: -- 2.7.4