clutter: Drop unused field in ClutterInputDevice struct

https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1403
This commit is contained in:
Carlos Garnacho 2020-06-05 19:31:27 +02:00
parent 63ad2c958d
commit d3e1ce7dbc
2 changed files with 1 additions and 2 deletions

View File

@ -134,7 +134,6 @@ struct _ClutterInputDevice
int previous_y;
uint32_t previous_time;
int previous_button_number;
ClutterModifierType previous_state;
GArray *axes;

View File

@ -515,7 +515,7 @@ clutter_input_device_init (ClutterInputDevice *self)
self->current_x = self->previous_x = -1;
self->current_y = self->previous_y = -1;
self->current_button_number = self->previous_button_number = -1;
self->current_state = self->previous_state = 0;
self->current_state = 0;
self->touch_sequences_info =
g_hash_table_new_full (NULL, NULL,