Fix gcc warning on potentially uninitialized gdk_event.

This commit is contained in:
Andreas Pokorny
2016-06-28 16:35:36 +02:00
committed by William Hua
parent 252ccb846f
commit bc4df6d4b3

View File

@ -325,18 +325,13 @@ handle_touch_event (GdkWindow *window,
for (i = 0; i < n; i++) for (i = 0; i < n; i++)
{ {
switch (mir_touch_event_action (mir_touch_event, i)) MirTouchAction action = mir_touch_event_action (mir_touch_event, i);
{ if (action == mir_touch_action_up)
case mir_touch_action_up: gdk_event = gdk_event_new (GDK_TOUCH_END);
gdk_event = gdk_event_new (GDK_TOUCH_END); else if (action == mir_touch_action_down)
break; gdk_event = gdk_event_new (GDK_TOUCH_BEGIN);
case mir_touch_action_down: else
gdk_event = gdk_event_new (GDK_TOUCH_BEGIN); gdk_event = gdk_event_new (GDK_TOUCH_UPDATE);
break;
case mir_touch_action_change:
gdk_event = gdk_event_new (GDK_TOUCH_UPDATE);
break;
}
gdk_event->touch.window = window; gdk_event->touch.window = window;
gdk_event->touch.sequence = GINT_TO_POINTER (mir_touch_event_id (mir_touch_event, i)); gdk_event->touch.sequence = GINT_TO_POINTER (mir_touch_event_id (mir_touch_event, i));