diff options
author | Povilas Kanapickas <povilas@radix.lt> | 2020-10-10 02:51:36 +0300 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2020-11-25 04:20:22 +0000 |
commit | 23a8b62d34344575f9df9d057fb74bfefa94a77b (patch) | |
tree | 49914ef363e845ba1f1a233fa8f23f2d83383154 /include | |
parent | 8bd8b3af1931629db548d39bb390edbef4315b0b (diff) |
dix: Store replayed event into GrabInfoRec struct as InternalEvent*
Diffstat (limited to 'include')
-rw-r--r-- | include/inputstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inputstr.h b/include/inputstr.h index bf35dbf4b..33d440b2c 100644 --- a/include/inputstr.h +++ b/include/inputstr.h @@ -501,7 +501,7 @@ typedef struct _GrabInfoRec { Bool frozen; int state; GrabPtr other; /* if other grab has this frozen */ - DeviceEvent *event; /* saved to be replayed */ + InternalEvent *event; /* saved to be replayed */ } sync; } GrabInfoRec, *GrabInfoPtr; |