diff options
author | Julien Cristau <jcristau@debian.org> | 2013-07-27 12:09:07 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-08-18 02:39:44 +0200 |
commit | fe7463b8ce0de301c2f82b108c93963424f77219 (patch) | |
tree | cf014e6d515bc77e40daed00fad9d379d330b366 /dix | |
parent | 6a49f8836a649322d38a364d9ae084be40fb2305 (diff) |
dix: add missing include for DeleteWindowFromAnySelections
Fixes build error with XACE disabled:
window.c:886:5: error: implicit declaration of function 'DeleteWindowFromAnySelections' [-Werror=implicit-function-declaration]
DeleteWindowFromAnySelections(pWin);
^
Debian bug#701372
Reported-by: Matthias Klose <doko@debian.org>
Signed-off-by: Julien Cristau <jcristau@debian.org>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'dix')
-rw-r--r-- | dix/window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dix/window.c b/dix/window.c index 8950f9766..9fa51c288 100644 --- a/dix/window.c +++ b/dix/window.c @@ -126,6 +126,7 @@ Equipment Corporation. #ifdef COMPOSITE #include "compint.h" #endif +#include "selection.h" #include "privates.h" #include "xace.h" |