summaryrefslogtreecommitdiffstats
path: root/src/input/pvsPrivInputHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/pvsPrivInputHandler.cpp')
-rw-r--r--src/input/pvsPrivInputHandler.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input/pvsPrivInputHandler.cpp b/src/input/pvsPrivInputHandler.cpp
index 70ed1bc..bfa60ce 100644
--- a/src/input/pvsPrivInputHandler.cpp
+++ b/src/input/pvsPrivInputHandler.cpp
@@ -21,7 +21,7 @@
#include <QtDebug>
#include <QSocketNotifier>
#include "inputEvent.h"
-#include "inputEventHandler.h"
+#include "inputHandlerChains.h"
#include "pvsPrivInputSocket.h"
#include "pvsPrivInputHandler.h"
@@ -63,6 +63,7 @@ PVSPrivInputHandler::PVSPrivInputHandler(int fd, QObject* parent) :
_notifier = new QSocketNotifier(fd, QSocketNotifier::Read, this);
_notifier->setEnabled(true);
connect(_notifier, SIGNAL(activated(int)), this, SLOT(canRead()));
+ _handlerChain = makePrivilegedInputEventHandlerChain();
}
PVSPrivInputHandler::~PVSPrivInputHandler()