summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qinputaspect.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2016-05-13 12:30:15 +0200
committerSean Harmer <sean.harmer@kdab.com>2016-05-14 16:02:45 +0000
commit881fbf9a89b12669178987e5b4c58fedfb8eb9ff (patch)
treedbe23cb308f3cb53a780205224ef20027845255f /src/input/frontend/qinputaspect.cpp
parent361660533d0cba9e1ec7667724522a7724c5fb1b (diff)
De-inline dtors of aspect classes
Costs 170B each in Logic, Render, Input, but otherwise we'll not be able to add code to the dtors down the line until Qt 6. Change-Id: Icf71bd959f2efa3c67bccaf166569e06a013fef1 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/frontend/qinputaspect.cpp')
-rw-r--r--src/input/frontend/qinputaspect.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/input/frontend/qinputaspect.cpp b/src/input/frontend/qinputaspect.cpp
index 917d2bc71..0a364e27b 100644
--- a/src/input/frontend/qinputaspect.cpp
+++ b/src/input/frontend/qinputaspect.cpp
@@ -146,6 +146,11 @@ QInputAspect::QInputAspect(QInputAspectPrivate &dd, QObject *parent)
d->m_inputHandler->addInputDeviceIntegration(d->m_keyboardMouseIntegration.data());
}
+/*! \internal */
+QInputAspect::~QInputAspect()
+{
+}
+
void QInputAspectPrivate::loadInputDevicePlugins()
{
const QStringList keys = QInputDeviceIntegrationFactory::keys();