summaryrefslogtreecommitdiffstats
path: root/src/input/backend/keyboardeventfilter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/backend/keyboardeventfilter.cpp')
-rw-r--r--src/input/backend/keyboardeventfilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/backend/keyboardeventfilter.cpp b/src/input/backend/keyboardeventfilter.cpp
index 53168e601..e4f47f08e 100644
--- a/src/input/backend/keyboardeventfilter.cpp
+++ b/src/input/backend/keyboardeventfilter.cpp
@@ -65,7 +65,7 @@ void KeyboardEventFilter::setInputHandler(InputHandler *handler)
// Triggered in the view thread (usually the main thread)
bool KeyboardEventFilter::eventFilter(QObject *obj, QEvent *e)
{
- Q_UNUSED(obj)
+ Q_UNUSED(obj);
if (e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease) {
// Store event to be processed later on in an InputAspect job
m_inputHandler->appendKeyEvent(QT_PREPEND_NAMESPACE(QKeyEvent)(*static_cast<QT_PREPEND_NAMESPACE(QKeyEvent) *>(e)));