dix: comments, whitespaces, copyright fixes.
Removing my copyright message for now, should eventually be in line with the rest of the messages.
This commit is contained in:
parent
09c0c1a3cc
commit
0931f40bf1
12
dix/events.c
12
dix/events.c
|
@ -107,12 +107,6 @@ of the copyright holder.
|
|||
|
||||
******************************************************************/
|
||||
|
||||
/*
|
||||
* MPX additions
|
||||
* Copyright 2006 by Peter Hutterer
|
||||
* Author: Peter Hutterer <peter@cs.unisa.edu.au>
|
||||
*/
|
||||
|
||||
/** @file
|
||||
* This file handles event delivery and a big part of the server-side protocol
|
||||
* handling (the parts for input devices).
|
||||
|
@ -5022,6 +5016,12 @@ ProcGrabPointer(ClientPtr client)
|
|||
}
|
||||
|
||||
grab = device->deviceGrab.grab;
|
||||
/* check for
|
||||
1. other client has a grab on the device already.
|
||||
2. window is viewable
|
||||
3. other client has this device as frozen "other" device
|
||||
4. times are screwed.
|
||||
*/
|
||||
if ((grab) && !SameClient(grab, client))
|
||||
rep.status = AlreadyGrabbed;
|
||||
else if ((!pWin->realized) ||
|
||||
|
|
|
@ -23,12 +23,6 @@
|
|||
*
|
||||
* Author: Daniel Stone <daniel@fooishbar.org>
|
||||
*/
|
||||
/*
|
||||
* MPX additions:
|
||||
* Copyright © 2006 Peter Hutterer
|
||||
* Author: Peter Hutterer <peter@cs.unisa.edu.au>
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_DIX_CONFIG_H
|
||||
#include <dix-config.h>
|
||||
|
|
Loading…
Reference in New Issue