diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-03-18 15:00:14 +0000 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-03-25 19:25:25 +0000 |
commit | 3c45b59e675ba926ec95842ac3d49e2091e41eb8 (patch) | |
tree | 0af4abc4050f2f5225ce49cce5621804398b0adc /hw/xwin | |
parent | 03f45df93469f6aef391e97007b9614e0770cc4c (diff) |
Fix XWin compilation after commit 769531b9
commit 769531b9 "Add mode field to pointer movement hooks" changes the
function signature of miPointerSetPosition() to include the movement mode
which resulted in the pointer position
Update use of miPointerSetPosition() in winEnqueueMotion() appropriately
(See http://tinderbox.freedesktop.org/builds/2011-03-16-0008/logs/xserver/#build)
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'hw/xwin')
-rw-r--r-- | hw/xwin/winmouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwin/winmouse.c b/hw/xwin/winmouse.c index ee93d8f02..080e09626 100644 --- a/hw/xwin/winmouse.c +++ b/hw/xwin/winmouse.c @@ -372,7 +372,7 @@ void winEnqueueMotion(int x, int y) ValuatorMask mask; EventListPtr events; - miPointerSetPosition(g_pwinPointer, &x, &y); + miPointerSetPosition(g_pwinPointer, POINTER_RELATIVE, &x, &y); valuators[0] = x; valuators[1] = y; |