From 294d91e409ef74ee401e957369ad2dcf687f30d3 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 10 Feb 2026 13:17:47 +0100 Subject: [PATCH] include: replace DDXPoint by xPoint DDXPoint is just an alias to xPoint Signed-off-by: Enrico Weigelt, metux IT consult --- include/gcstruct.h | 4 ++-- include/scrnintstr.h | 2 +- include/windowstr.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/gcstruct.h b/include/gcstruct.h index 48c2122b96..9e3c53d43d 100644 --- a/include/gcstruct.h +++ b/include/gcstruct.h @@ -271,8 +271,8 @@ typedef struct _GC { */ PixUnion tile; PixmapPtr stipple; - DDXPointRec patOrg; /* origin for (tile, stipple) */ - DDXPointRec clipOrg; + xPoint patOrg; /* origin for (tile, stipple) */ + xPoint clipOrg; struct _Font *font; RegionPtr clientClip; unsigned int stateChanges; /* masked with GC_ */ diff --git a/include/scrnintstr.h b/include/scrnintstr.h index 3f5382f039..f4342b6595 100644 --- a/include/scrnintstr.h +++ b/include/scrnintstr.h @@ -168,7 +168,7 @@ typedef void (*PaintWindowProcPtr) (WindowPtr /*pWindow*/, int /*what*/); typedef void (*CopyWindowProcPtr) (WindowPtr /*pWindow */ , - DDXPointRec /*ptOldOrg */ , + xPoint /*ptOldOrg */ , RegionPtr /*prgnSrc */ ); typedef void (*ClearToBackgroundProcPtr) (WindowPtr /*pWindow */ , diff --git a/include/windowstr.h b/include/windowstr.h index 2eb0dda292..3c68c88781 100644 --- a/include/windowstr.h +++ b/include/windowstr.h @@ -127,7 +127,7 @@ typedef struct _Window { union _Validate *valdata; RegionRec winSize; RegionRec borderSize; - DDXPointRec origin; /* position relative to parent */ + xPoint origin; /* position relative to parent */ unsigned short borderWidth; unsigned short deliverableEvents; /* all masks from all clients */ Mask eventMask; /* mask from the creating client */