diff options
author | Peter Hutterer <peter@cs.unisa.edu.au> | 2006-12-11 18:09:59 +1030 |
---|---|---|
committer | Peter Hutterer <whot@hyena.localdomain> | 2006-12-11 18:09:59 +1030 |
commit | ae3c24da34cd8eeb77a6389861856fd51e0841f5 (patch) | |
tree | 6565b6456d8dc51cb5b43bedb4a2b698fb093785 /hw/xnest | |
parent | eb1d9f51af19dab20a95c2830ca1c508d8ee66bb (diff) |
dix: Moving SpriteRec into DeviceIntRec
removing global sprite structure
beginning to remove MPX ifdefs
xnest: Fix to make xnest compile again
Diffstat (limited to 'hw/xnest')
-rw-r--r-- | hw/xnest/Events.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/xnest/Events.c b/hw/xnest/Events.c index a20924128..8f794edcc 100644 --- a/hw/xnest/Events.c +++ b/hw/xnest/Events.c @@ -25,6 +25,7 @@ is" without express or implied warranty. #include "scrnintstr.h" #include "windowstr.h" #include "servermd.h" +#include "inputstr.h" #include "mi.h" @@ -183,7 +184,7 @@ xnestCollectEvents() if (X.xcrossing.detail != NotifyInferior) { pScreen = xnestScreen(X.xcrossing.window); if (pScreen) { - NewCurrentScreen(pScreen, X.xcrossing.x, X.xcrossing.y); + NewCurrentScreen(inputInfo.pointer, pScreen, X.xcrossing.x, X.xcrossing.y); valuators[0] = X.xcrossing.x; valuators[1] = X.xcrossing.y; lastEventTime = GetTimeInMillis(); |