From c9b576982d929f029fb1867240e63876f1a78b77 Mon Sep 17 00:00:00 2001 From: John Lindgren Date: Mon, 28 Jul 2025 01:03:22 -0400 Subject: [PATCH] include: add missing header dependencies Ensure that headers compile correctly regardless of include order. --- include/common/graphic-helpers.h | 2 ++ include/config/touch.h | 2 +- include/input/tablet.h | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/include/common/graphic-helpers.h b/include/common/graphic-helpers.h index 3fdde6ad..886a4c92 100644 --- a/include/common/graphic-helpers.h +++ b/include/common/graphic-helpers.h @@ -2,6 +2,8 @@ #ifndef LABWC_GRAPHIC_HELPERS_H #define LABWC_GRAPHIC_HELPERS_H +#include +#include #include struct wlr_fbox; diff --git a/include/config/touch.h b/include/config/touch.h index 12f7b032..1a05670e 100644 --- a/include/config/touch.h +++ b/include/config/touch.h @@ -2,7 +2,7 @@ #ifndef LABWC_TOUCH_CONFIG_H #define LABWC_TOUCH_CONFIG_H -#include +#include #include struct touch_config_entry { diff --git a/include/input/tablet.h b/include/input/tablet.h index 29aeb72b..d90fbdb4 100644 --- a/include/input/tablet.h +++ b/include/input/tablet.h @@ -4,6 +4,7 @@ #include #include +#include "config/tablet-tool.h" struct seat; struct wlr_device; -- 2.52.0