summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2010-10-25 10:57:58 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2010-10-25 11:41:47 +1000
commitb5f4fc652cf5999045ff9006a55cf75edaba65c0 (patch)
treec4209ed2a861b1503f7dc5d143fe6ca69bde69c1
parent4eefb5bfa837aae2201769360745edcaad4ea8d8 (diff)
XI86_POINTER_CAPABLE is gone from the server.
And was a write-only flag before that anyway, no ifdef needed. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Tested-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--src/mouse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mouse.c b/src/mouse.c
index 045e6fc..dab7ae7 100644
--- a/src/mouse.c
+++ b/src/mouse.c
@@ -867,7 +867,7 @@ MousePreInit(InputDriverPtr drv, IDevPtr dev, int flags)
/* Initialise the InputInfoRec. */
pInfo->name = dev->identifier;
pInfo->type_name = XI_MOUSE;
- pInfo->flags = XI86_POINTER_CAPABLE | XI86_SEND_DRAG_EVENTS;
+ pInfo->flags = XI86_SEND_DRAG_EVENTS;
pInfo->device_control = MouseProc;
pInfo->read_input = MouseReadInput;
#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0