summaryrefslogtreecommitdiffstats
path: root/src/input/frontend
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2015-12-15 12:11:00 +0100
committerKevin Ottens <kevin.ottens@kdab.com>2015-12-17 09:17:34 +0000
commit8ef01dadfde7ad5bbe0bc42f145aa18d557d0c7a (patch)
tree7e90457c1cdc37d589bc6e46d7f1575901fe4e11 /src/input/frontend
parent3369e293d9dda79d767a6269838a61f6340ede48 (diff)
Move services() and jobManager() to the pimpl
This way we avoid leaking private types through public API. Change-Id: Ifb30d7e57d8b995bba8cf9a95ae77f8d7818d79a Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/frontend')
-rw-r--r--src/input/frontend/qinputaspect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/frontend/qinputaspect.cpp b/src/input/frontend/qinputaspect.cpp
index aa64d5e0d..46e6615e7 100644
--- a/src/input/frontend/qinputaspect.cpp
+++ b/src/input/frontend/qinputaspect.cpp
@@ -209,7 +209,7 @@ QVector<QAspectJobPtr> QInputAspect::jobsToExecute(qint64 time)
void QInputAspect::onInitialize(const QVariantMap &)
{
Q_D(QInputAspect);
- Qt3DCore::QEventFilterService *eventService = services()->eventFilterService();
+ Qt3DCore::QEventFilterService *eventService = d->services()->eventFilterService();
eventService->registerEventFilter(d->m_cameraController.data(), 128);
d->m_inputHandler->registerEventFilters(eventService);
}