diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-01-31 08:46:43 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-02-23 17:52:39 +1000 |
commit | daa3245c479b19d445a070b5b76ee005915b5335 (patch) | |
tree | f70bd7158288996fc0d84bbbc11b0a691071a2b2 /include/inputstr.h | |
parent | 75595ba4aa9c3823ffe3b3388ce088929824816f (diff) |
dix: fix EnqueueEvent to work with internal events.
Note that we're only partially switched to internal events. The event in the
devices' event queue (dev->deviceGrab.sync.event) is still an XI event. The
events in syncEvents are InternalEvents only now.
This also implies fixing CheckVirtualMotion to work with internal events.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'include/inputstr.h')
-rw-r--r-- | include/inputstr.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/inputstr.h b/include/inputstr.h index bed71be37..b3b15d210 100644 --- a/include/inputstr.h +++ b/include/inputstr.h @@ -516,8 +516,7 @@ typedef struct _QdEvent { DeviceIntPtr device; ScreenPtr pScreen; /* what screen the pointer was on */ unsigned long months; /* milliseconds is in the event */ - xEvent *event; - int evcount; -} QdEventRec; + InternalEvent *event; +} QdEventRec; #endif /* INPUTSTRUCT_H */ |