wayland: Remove unused list from MetaWaylandTablet

This object has no concept of focus itself, so the focus_resource_list
is unused.
This commit is contained in:
Carlos Garnacho 2016-05-10 15:23:52 +02:00
parent f820d4c886
commit 2c13ae2b59
2 changed files with 1 additions and 10 deletions

View File

@ -48,7 +48,6 @@ meta_wayland_tablet_new (ClutterInputDevice *device,
tablet = g_slice_new0 (MetaWaylandTablet);
wl_list_init (&tablet->resource_list);
wl_list_init (&tablet->focus_resource_list);
tablet->device = device;
tablet->tablet_seat = tablet_seat;
@ -119,12 +118,5 @@ struct wl_resource *
meta_wayland_tablet_lookup_resource (MetaWaylandTablet *tablet,
struct wl_client *client)
{
struct wl_resource *resource;
resource = wl_resource_find_for_client (&tablet->resource_list, client);
if (!resource)
resource = wl_resource_find_for_client (&tablet->focus_resource_list, client);
return resource;
return wl_resource_find_for_client (&tablet->resource_list, client);
}

View File

@ -35,7 +35,6 @@ struct _MetaWaylandTablet
ClutterInputDevice *device;
struct wl_list resource_list;
struct wl_list focus_resource_list;
MetaWaylandSurface *current;
};