From f59f2fc968cfcd51c996cc280db7305221b17f40 Mon Sep 17 00:00:00 2001 From: Robbin Marcus Date: Sat, 19 Jan 2019 21:06:22 +0100 Subject: [PATCH] WL rename to serial (Travis CI build) --- src/wl_window.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wl_window.c b/src/wl_window.c index 1a7fffbc..2aa6e25b 100644 --- a/src/wl_window.c +++ b/src/wl_window.c @@ -37,6 +37,7 @@ #include #include #include +#include static void shellSurfaceHandlePing(void* data, @@ -1217,7 +1218,7 @@ void _glfwPlatformFocusWindow(_GLFWwindow* window) void _glfwPlatformDragWindow(_GLFWwindow* window) { - wl_shell_surface_move(window->wl.shellSurface, _glfw.wl.seat, _glfw.wl.pointerSerial); + wl_shell_surface_move(window->wl.shellSurface, _glfw.wl.seat, _glfw.wl.serial); } void _glfwPlatformResizeWindow(_GLFWwindow* window, int border) @@ -1254,7 +1255,7 @@ void _glfwPlatformResizeWindow(_GLFWwindow* window, int border) } wl_shell_surface_resize(window->wl.shellSurface, _glfw.wl.seat, - _glfw.wl.pointerSerial, + _glfw.wl.serial, wlBorder); }