diff options
author | Paolo Borelli <pborelli@gnome.org> | 2016-02-29 20:59:36 +0100 |
---|---|---|
committer | Paolo Borelli <pborelli@gnome.org> | 2016-02-29 21:53:58 +0100 |
commit | 4a6f8a065abace71c0ca32d959ec9b86628bffaa (patch) | |
tree | c29bce8ff71d34f89882ddba3bdf267c91209e1a /gdk/broadway/gdkdisplay-broadway.h | |
parent | d000b212c6baeb2b85a9dd75266af0c02a2efb27 (diff) | |
download | gtk+-4a6f8a065abace71c0ca32d959ec9b86628bffaa.tar.gz |
gdk: remove the display->list_devices vfunc
gdk_display_list_devices is deprecated and all the backends
implement the same fallback by delegating to the device manager
and caching the list (caching it is needed since the method does
not transfer ownership of the container).
The compat code can be shared among all backends and we can
initialize the list lazily only in the case someone calls the
deprecated method.
https://bugzilla.gnome.org/show_bug.cgi?id=762891
Diffstat (limited to 'gdk/broadway/gdkdisplay-broadway.h')
-rw-r--r-- | gdk/broadway/gdkdisplay-broadway.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdk/broadway/gdkdisplay-broadway.h b/gdk/broadway/gdkdisplay-broadway.h index 401ac6fa93..fe2080ac70 100644 --- a/gdk/broadway/gdkdisplay-broadway.h +++ b/gdk/broadway/gdkdisplay-broadway.h @@ -50,10 +50,6 @@ struct _GdkBroadwayDisplay /* drag and drop information */ GdkDragContext *current_dest_drag; - /* Input device */ - /* input GdkDevice list */ - GList *input_devices; - /* The offscreen window that has the pointer in it (if any) */ GdkWindow *active_offscreen_window; |