win32: Stop using _gdk_display global in device code

Use gdk_device_get_display() instead.
This commit is contained in:
Benjamin Otte
2016-02-06 05:46:09 +01:00
committed by Benjamin Otte
parent ccbfa64d67
commit 76e56c5038
5 changed files with 22 additions and 21 deletions

View File

@ -52,9 +52,10 @@ struct _GdkDeviceManagerWin32Class
GType gdk_device_manager_win32_get_type (void) G_GNUC_CONST;
void _gdk_input_set_tablet_active (void);
gboolean _gdk_input_other_event (GdkEvent *event,
MSG *msg,
GdkWindow *window);
gboolean gdk_input_other_event (GdkDisplay *display,
GdkEvent *event,
MSG *msg,
GdkWindow *window);
G_END_DECLS