Drop gratitious use of GdkPoint

This is the only use of this undocumented struct,
and it does not make this code any better. Just drop it.
This commit is contained in:
Matthias Clasen 2017-12-26 11:30:37 -05:00
parent f2ad5ddbb6
commit f307fa99a5

View File

@ -50,7 +50,8 @@ typedef struct _EventData EventData;
struct _EventData struct _EventData
{ {
guint32 evtime; guint32 evtime;
GdkPoint point; int x;
int y;
}; };
struct _GtkGestureSwipePrivate struct _GtkGestureSwipePrivate
@ -140,8 +141,8 @@ gtk_gesture_swipe_update (GtkGesture *gesture,
_gtk_gesture_get_last_update_time (gesture, sequence, &new.evtime); _gtk_gesture_get_last_update_time (gesture, sequence, &new.evtime);
gtk_gesture_get_point (gesture, sequence, &x, &y); gtk_gesture_get_point (gesture, sequence, &x, &y);
new.point.x = x; new.x = x;
new.point.y = y; new.y = y;
_gtk_gesture_swipe_clear_backlog (swipe, new.evtime); _gtk_gesture_swipe_clear_backlog (swipe, new.evtime);
g_array_append_val (priv->events, new); g_array_append_val (priv->events, new);
@ -172,8 +173,8 @@ _gtk_gesture_swipe_calculate_velocity (GtkGestureSwipe *gesture,
end = &g_array_index (priv->events, EventData, priv->events->len - 1); end = &g_array_index (priv->events, EventData, priv->events->len - 1);
diff_time = end->evtime - start->evtime; diff_time = end->evtime - start->evtime;
diff_x = end->point.x - start->point.x; diff_x = end->x - start->x;
diff_y = end->point.y - start->point.y; diff_y = end->y - start->y;
if (diff_time == 0) if (diff_time == 0)
return; return;