aboutsummaryrefslogtreecommitdiffstats
path: root/src/virtualkeyboard/abstractinputpanel.cpp
diff options
context:
space:
mode:
authorJarkko Koivikko <jarkko.koivikko@code-q.fi>2014-04-17 12:31:57 +0300
committerJarkko Koivikko <jarkko.koivikko@code-q.fi>2014-05-02 12:46:13 +0300
commit4dbb452a60874b0f123dff1dd7ed07c298baee18 (patch)
tree4fdd37df57e6912549b05f0c100ec6c46159d152 /src/virtualkeyboard/abstractinputpanel.cpp
parentaa8509f6d208e7c4771e46a5b894e7bb341bff14 (diff)
Remove duplicate pimpl pointers
Start using QObjectPrivate in private classes. Requires dependency to core-private. Task-number: QTRD-2819 Change-Id: I758783080de579f793457b50a1e32aeb5ab1a3eb Reviewed-by: Mitch Curtis <mitch.curtis@digia.com> Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
Diffstat (limited to 'src/virtualkeyboard/abstractinputpanel.cpp')
-rw-r--r--src/virtualkeyboard/abstractinputpanel.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/virtualkeyboard/abstractinputpanel.cpp b/src/virtualkeyboard/abstractinputpanel.cpp
index cccfa165..6deda242 100644
--- a/src/virtualkeyboard/abstractinputpanel.cpp
+++ b/src/virtualkeyboard/abstractinputpanel.cpp
@@ -37,6 +37,16 @@
*/
/*!
+ Creates an input panel container with \a dd as private data and
+ \a parent but does not construct the view. The view is explicitly
+ constructed by the AbstractInputPanel::createView() method.
+*/
+AbstractInputPanel::AbstractInputPanel(QObjectPrivate &dd, QObject *parent) :
+ QObject(dd, parent)
+{
+}
+
+/*!
Creates an input panel container with \a parent but does not construct
the view. The view is explicitly constructed by the
AbstractInputPanel::createView() method.