summaryrefslogtreecommitdiffstats
path: root/src/input/unprivilegedInputHandlerChain.cpp
diff options
context:
space:
mode:
authorSebastien Braun2010-10-11 09:02:38 +0200
committerSebastien Braun2010-10-11 09:02:38 +0200
commit732b9cfec697e893fcf5b65e1e7c9e5921ea5951 (patch)
tree3374393a9768ac97831f13e157fb7a8a9e0f329d /src/input/unprivilegedInputHandlerChain.cpp
parentAdd access control check to input event handling in PVS daemon (diff)
downloadpvs-732b9cfec697e893fcf5b65e1e7c9e5921ea5951.tar.gz
pvs-732b9cfec697e893fcf5b65e1e7c9e5921ea5951.tar.xz
pvs-732b9cfec697e893fcf5b65e1e7c9e5921ea5951.zip
Introduce LogNonMatchingHandler
Diffstat (limited to 'src/input/unprivilegedInputHandlerChain.cpp')
-rw-r--r--src/input/unprivilegedInputHandlerChain.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input/unprivilegedInputHandlerChain.cpp b/src/input/unprivilegedInputHandlerChain.cpp
index 2df2d77..3f47631 100644
--- a/src/input/unprivilegedInputHandlerChain.cpp
+++ b/src/input/unprivilegedInputHandlerChain.cpp
@@ -20,6 +20,7 @@
#include "privilegedHandlerForwarder.h"
#include "incompatibleHandler.h"
#include "inputHandlerChains.h"
+#include "logNonMatchingHandler.h"
InputEventHandlerChain makeUnprivilegedInputEventHandlerChain()
{
@@ -27,6 +28,7 @@ InputEventHandlerChain makeUnprivilegedInputEventHandlerChain()
.add<X11FakeMouseButtonHandler>()
.add<X11FakeMouseMovementHandler>()
.add<PrivilegedHandlerForwarder>()
- .add<IncompatibleHandler>(); // See comments in incompatibleHandler.h
+ .add<IncompatibleHandler>() // See comments in incompatibleHandler.h
+ .add<LogNonMatchingHandler>();
}