summaryrefslogtreecommitdiffstats
path: root/src/input/keyboardcontroller_p.h
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2015-02-25 16:33:51 +0100
committerSean Harmer <sean.harmer@kdab.com>2015-02-28 16:29:01 +0000
commit8d33af238e7b855bd5a217302e586d1dfe73066e (patch)
tree878cb85d034b18e982f60184d3d30072784c359e /src/input/keyboardcontroller_p.h
parent66fc1e35db664ecaf0b37c855eea7391c0576773 (diff)
QBackendNodeFunctor: get and destroy now take a QNodeId
This will help fixing the dynamic destruction in follow up patches. Change-Id: Id44fbeac388628c0e563d288e13d1f15d7ac0c24 Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com> Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/keyboardcontroller_p.h')
-rw-r--r--src/input/keyboardcontroller_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/keyboardcontroller_p.h b/src/input/keyboardcontroller_p.h
index a10cb35f2..277b4b0be 100644
--- a/src/input/keyboardcontroller_p.h
+++ b/src/input/keyboardcontroller_p.h
@@ -84,8 +84,8 @@ public:
explicit KeyboardControllerFunctor(InputHandler *handler);
QBackendNode *create(QNode *frontend, const QBackendNodeFactory *factory) const Q_DECL_OVERRIDE;
- QBackendNode *get(QNode *frontend) const Q_DECL_OVERRIDE;
- void destroy(QNode *frontend) const Q_DECL_OVERRIDE;
+ QBackendNode *get(const QNodeId &id) const Q_DECL_OVERRIDE;
+ void destroy(const QNodeId &id) const Q_DECL_OVERRIDE;
private:
InputHandler *m_handler;