WL rename to serial (Travis CI build)

This commit is contained in:
Robbin Marcus 2019-01-19 21:06:22 +01:00
parent 749639347a
commit f59f2fc968

View File

@ -37,6 +37,7 @@
#include <sys/mman.h>
#include <sys/timerfd.h>
#include <poll.h>
#include <assert.h>
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);
}