From f0bf6919ca5e34f9f91ed4711726d1c6ff95c5fd Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 26 Feb 2025 15:25:03 +0100 Subject: [PATCH] mi: micmap.h: clean up include statements * not using anything from colormapst.h * but several other includes have been missing (consumers had to include them separately before that file) Signed-off-by: Enrico Weigelt, metux IT consult --- mi/micmap.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/mi/micmap.h b/mi/micmap.h index eeb70c4ae..a96f47d1e 100644 --- a/mi/micmap.h +++ b/mi/micmap.h @@ -1,9 +1,14 @@ - -#include "colormapst.h" - #ifndef _MICMAP_H_ #define _MICMAP_H_ +#include +#include +#include + +#include "colormap.h" +#include "privates.h" +#include "screenint.h" + #define GetInstalledmiColormap(s) \ ((ColormapPtr) dixLookupPrivate(&(s)->devPrivates, micmapScrPrivateKey))