Fix gcc warning on potentially uninitialized gdk_event.
This commit is contained in:
committed by
William Hua
parent
252ccb846f
commit
bc4df6d4b3
@ -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));
|
||||||
|
|||||||
Reference in New Issue
Block a user