diff options
author | Simon Ser <contact@emersion.fr> | 2022-11-25 18:15:31 +0100 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2022-12-06 22:39:45 +0000 |
commit | 86fc2199f85ac0e1089bb7fd5a0b5cbc432bdb67 (patch) | |
tree | 3b97acbbdd4d2bf3b956d2e2594bd5b79958dfee /include/xwayland/xwm.h | |
parent | a4a40618adb287d6ebebf099ca4d64f39b7f7770 (diff) |
build: unify naming for HAVE_* defines
We sometimes used HAS_, sometimes polluted the LIBINPUT_ namespace,
etc.
Diffstat (limited to 'include/xwayland/xwm.h')
-rw-r--r-- | include/xwayland/xwm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xwayland/xwm.h b/include/xwayland/xwm.h index 7ed97b15..c057e1b7 100644 --- a/include/xwayland/xwm.h +++ b/include/xwayland/xwm.h @@ -8,7 +8,7 @@ #include "config.h" #include "xwayland/selection.h" -#if HAS_XCB_ERRORS +#if HAVE_XCB_ERRORS #include <xcb/xcb_errors.h> #endif @@ -126,7 +126,7 @@ struct wlr_xwm { const xcb_query_extension_reply_t *xfixes; const xcb_query_extension_reply_t *xres; uint32_t xfixes_major_version; -#if HAS_XCB_ERRORS +#if HAVE_XCB_ERRORS xcb_errors_context_t *errors_context; #endif unsigned int last_focus_seq; |