backends/native: Remove unused function

This meta_seat_native_get_device() function has been unused for some time.

https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1403
This commit is contained in:
Carlos Garnacho 2020-08-05 18:07:36 +02:00
parent ef67fab737
commit 92bc79fd51
2 changed files with 0 additions and 21 deletions

View File

@ -2850,24 +2850,6 @@ meta_seat_native_init (MetaSeatNative *seat)
seat->barrier_manager = meta_barrier_manager_native_new ();
}
ClutterInputDevice *
meta_seat_native_get_device (MetaSeatNative *seat,
int id)
{
ClutterInputDevice *device;
GSList *l;
for (l = seat->devices; l; l = l->next)
{
device = l->data;
if (clutter_input_device_get_device_id (device) == id)
return device;
}
return NULL;
}
/**
* meta_seat_native_set_device_callbacks: (skip)
* @open_callback: the user replacement for open()

View File

@ -171,9 +171,6 @@ void meta_seat_native_set_libinput_seat (MetaSeatNative *seat,
void meta_seat_native_sync_leds (MetaSeatNative *seat);
ClutterInputDevice * meta_seat_native_get_device (MetaSeatNative *seat,
int id);
MetaTouchState * meta_seat_native_acquire_touch_state (MetaSeatNative *seat,
int seat_slot);
MetaTouchState * meta_seat_native_lookup_touch_state (MetaSeatNative *seat,