diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2010-09-09 14:43:02 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2011-03-03 09:39:01 +1000 |
commit | 19ac7ef23e7ff07068a63d1553159e7cb3ad2576 (patch) | |
tree | ef613a8c4596d75477f1735f6478ff4bbba78c7f /src/XIProperties.c | |
parent | 536bd44c513ede7e61e112c82a80fb9197f261f7 (diff) |
Require XI 2 for all XI 2 calls.
Each XI2 call should check _XiCheckExtInit for XI version 2.0 or higher.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Daniel Stone <daniel@fooishbar.org>
Diffstat (limited to 'src/XIProperties.c')
-rw-r--r-- | src/XIProperties.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/XIProperties.c b/src/XIProperties.c index 0f77e58..83a7a68 100644 --- a/src/XIProperties.c +++ b/src/XIProperties.c @@ -49,7 +49,7 @@ XIListProperties(Display* dpy, int deviceid, int *num_props_return) LockDisplay(dpy); *num_props_return = 0; - if (_XiCheckExtInit(dpy, Dont_Check, info) == -1) + if (_XiCheckExtInit(dpy, XInput_2_0, info) == -1) goto cleanup; GetReq(XIListProperties, req); @@ -88,7 +88,7 @@ XIDeleteProperty(Display* dpy, int deviceid, Atom property) XExtDisplayInfo *info = XInput_find_display(dpy); LockDisplay(dpy); - if (_XiCheckExtInit(dpy, Dont_Check, info) == -1) + if (_XiCheckExtInit(dpy, XInput_2_0, info) == -1) return; GetReq(XIDeleteProperty, req); @@ -111,7 +111,7 @@ XIChangeProperty(Display* dpy, int deviceid, Atom property, Atom type, XExtDisplayInfo *info = XInput_find_display(dpy); LockDisplay(dpy); - if (_XiCheckExtInit(dpy, Dont_Check, info) == -1) + if (_XiCheckExtInit(dpy, XInput_2_0, info) == -1) return; GetReq(XIChangeProperty, req); @@ -175,7 +175,7 @@ XIGetProperty(Display* dpy, int deviceid, Atom property, long offset, XExtDisplayInfo *info = XInput_find_display(dpy); LockDisplay(dpy); - if (_XiCheckExtInit(dpy, Dont_Check, info) == -1) + if (_XiCheckExtInit(dpy, XInput_2_0, info) == -1) return 1; GetReq(XIGetProperty, req); |