include: replace DDXPoint by xPoint

DDXPoint is just an alias to xPoint

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2026-02-10 13:17:47 +01:00
committed by Enrico Weigelt
parent 92604954f8
commit 294d91e409
3 changed files with 4 additions and 4 deletions

View File

@@ -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_<kind> */

View File

@@ -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 */ ,

View File

@@ -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 */