From 029ee28a26bb85115844984b568600c14b8cea3e Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 21 Feb 2025 17:18:53 +0100 Subject: [PATCH] xkb: xkbgeom.h: drop unused XkbBounds(Width|Height) macros These aren't used anywhere, so no need to keep them. Signed-off-by: Enrico Weigelt, metux IT consult --- xkb/xkbgeom.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/xkb/xkbgeom.h b/xkb/xkbgeom.h index d7ef01375..106d19bf0 100644 --- a/xkb/xkbgeom.h +++ b/xkb/xkbgeom.h @@ -51,9 +51,6 @@ typedef struct _XkbBounds { short x2, y2; } XkbBoundsRec, *XkbBoundsPtr; -#define XkbBoundsWidth(b) (((b)->x2)-((b)->x1)) -#define XkbBoundsHeight(b) (((b)->y2)-((b)->y1)) - typedef struct _XkbOutline { unsigned short num_points; unsigned short sz_points;