From 19ba3f0c2ae7ca5f79b714020922716fc2c3b3ae Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sun, 9 Jul 2023 11:47:50 +0200 Subject: xwayland: drop struct wlr_xwayland_move_event This only contains the xsurface, which isn't particularly useful. --- xwayland/xwm.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'xwayland/xwm.c') diff --git a/xwayland/xwm.c b/xwayland/xwm.c index a6d249e7..a8f2eb2d 100644 --- a/xwayland/xwm.c +++ b/xwayland/xwm.c @@ -1243,13 +1243,11 @@ static void xwm_handle_net_wm_moveresize_message(struct wlr_xwm *xwm, // TODO: we should probably add input or seat info to this but we would just // be guessing struct wlr_xwayland_resize_event resize_event; - struct wlr_xwayland_move_event move_event; int detail = ev->data.data32[2]; switch (detail) { case _NET_WM_MOVERESIZE_MOVE: - move_event.surface = xsurface; - wl_signal_emit_mutable(&xsurface->events.request_move, &move_event); + wl_signal_emit_mutable(&xsurface->events.request_move, NULL); break; case _NET_WM_MOVERESIZE_SIZE_TOPLEFT: case _NET_WM_MOVERESIZE_SIZE_TOP: -- cgit v1.2.3