From fff480e5849ec5cd2916e4cfe006374806ebb756 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 1 Mar 2020 11:43:58 +0100 Subject: [PATCH] input: use xdg_toplevel_resize_edge enum type --- input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input.c b/input.c index b5973364..bf3a0a91 100644 --- a/input.c +++ b/input.c @@ -947,7 +947,7 @@ wl_pointer_button(void *data, struct wl_pointer *wl_pointer, case TERM_SURF_BORDER_RIGHT: case TERM_SURF_BORDER_TOP: case TERM_SURF_BORDER_BOTTOM: { - static const int map[] = { + static const enum xdg_toplevel_resize_edge map[] = { [TERM_SURF_BORDER_LEFT] = XDG_TOPLEVEL_RESIZE_EDGE_LEFT, [TERM_SURF_BORDER_RIGHT] = XDG_TOPLEVEL_RESIZE_EDGE_RIGHT, [TERM_SURF_BORDER_TOP] = XDG_TOPLEVEL_RESIZE_EDGE_TOP, @@ -955,7 +955,7 @@ wl_pointer_button(void *data, struct wl_pointer *wl_pointer, }; if (button == BTN_LEFT && state == WL_POINTER_BUTTON_STATE_PRESSED) { - int resize_type; + enum xdg_toplevel_resize_edge resize_type; int x = wayl->mouse.x; int y = wayl->mouse.y;