diff options
| author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-06-12 16:45:36 +1000 | 
|---|---|---|
| committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-06-14 11:34:35 +1000 | 
| commit | b67ff1d6e0d01170c6261593ca36d0f51d917393 (patch) | |
| tree | 9126785fa94503b6bc0b9ca0871df9f378e852ae | |
| parent | b2bf67b61c564a4b92a429ca9ad455403161f33a (diff) | |
Xi: XISelectEvents/XIGetSelectedEvents use 'win' instead of 'window' now.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
| -rw-r--r-- | Xi/xiselectev.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/Xi/xiselectev.c b/Xi/xiselectev.c index 1259de596..7a16e8567 100644 --- a/Xi/xiselectev.c +++ b/Xi/xiselectev.c @@ -46,7 +46,7 @@ SProcXISelectEvents(ClientPtr client)      REQUEST(xXISelectEventsReq);      swaps(&stuff->length, n);      REQUEST_AT_LEAST_SIZE(xXISelectEventsReq); -    swapl(&stuff->window, n); +    swapl(&stuff->win, n);      swaps(&stuff->num_masks, n);      evmask = (xXIEventMask*)&stuff[1]; @@ -76,7 +76,7 @@ ProcXISelectEvents(ClientPtr client)      if (stuff->num_masks == 0)          return BadValue; -    rc = dixLookupWindow(&win, stuff->window, client, DixReceiveAccess); +    rc = dixLookupWindow(&win, stuff->win, client, DixReceiveAccess);      if (rc != Success)          return rc; @@ -154,7 +154,7 @@ SProcXIGetSelectedEvents(ClientPtr client)      REQUEST(xXIGetSelectedEventsReq);      swaps(&stuff->length, n);      REQUEST_SIZE_MATCH(xXIGetSelectedEventsReq); -    swapl(&stuff->window, n); +    swapl(&stuff->win, n);      return (ProcXIGetSelectedEvents(client));  } @@ -175,7 +175,7 @@ ProcXIGetSelectedEvents(ClientPtr client)      REQUEST(xXIGetSelectedEventsReq);      REQUEST_SIZE_MATCH(xXIGetSelectedEventsReq); -    rc = dixLookupWindow(&win, stuff->window, client, DixReceiveAccess); +    rc = dixLookupWindow(&win, stuff->win, client, DixReceiveAccess);      if (rc != Success)          return rc; | 
