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 <[email protected]> --- 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 ee93d8f..080e096 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; -- 1.7.4 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
