Wayland: Cleanup

(cherry picked from commit 040712ce99)
This commit is contained in:
Camilla Löwy 2022-06-10 18:53:22 +02:00
parent 5feaa33529
commit f454410b79

View File

@ -443,7 +443,8 @@ static void surfaceHandleLeave(void* userData,
checkScaleChange(window); checkScaleChange(window);
} }
static const struct wl_surface_listener surfaceListener = { static const struct wl_surface_listener surfaceListener =
{
surfaceHandleEnter, surfaceHandleEnter,
surfaceHandleLeave surfaceHandleLeave
}; };
@ -599,7 +600,8 @@ static void xdgSurfaceHandleConfigure(void* userData,
} }
} }
static const struct xdg_surface_listener xdgSurfaceListener = { static const struct xdg_surface_listener xdgSurfaceListener =
{
xdgSurfaceHandleConfigure xdgSurfaceHandleConfigure
}; };