diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-09-27 23:00:59 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-09-27 23:00:59 -0700 |
commit | dadab5a2279a19dcf709402d7f22f0cd48670db0 (patch) | |
tree | b70eac139b7d04495a48c2c2b64128b090da9bdb /hw/xquartz | |
parent | 54000bdcbca52a2de31f7c1a1147de6d8e9dbbb8 (diff) |
XQuartz: Fix QuartzSetCursor to match the expected prototype.
Diffstat (limited to 'hw/xquartz')
-rw-r--r-- | hw/xquartz/xpr/xprCursor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xquartz/xpr/xprCursor.c b/hw/xquartz/xpr/xprCursor.c index 84291a938..b577fc099 100644 --- a/hw/xquartz/xpr/xprCursor.c +++ b/hw/xquartz/xpr/xprCursor.c @@ -212,7 +212,7 @@ QuartzUnrealizeCursor(DeviceIntPtr pDev, ScreenPtr pScreen, CursorPtr pCursor) * Set the cursor sprite and position. */ static void -QuartzSetCursor(DeviceIntPtr pDev, ScreenPtr pScreen, CursorPtr pCursor) +QuartzSetCursor(DeviceIntPtr pDev, ScreenPtr pScreen, CursorPtr pCursor, int x, int y) { QuartzCursorScreenPtr ScreenPriv = CURSOR_PRIV(pScreen); @@ -407,5 +407,5 @@ QuartzResumeXCursor(ScreenPtr pScreen) if (pCursor == NULL) return; - QuartzSetCursor(darwinPointer, pScreen, pCursor); + QuartzSetCursor(darwinPointer, pScreen, pCursor, /* x */ 0, /* y */ 0); } |