summaryrefslogtreecommitdiffstats
path: root/src/input/keyeventdispatcherjob_p.h
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2014-11-16 17:30:51 +0000
committerSean Harmer <sean.harmer@kdab.com>2014-11-19 08:59:11 +0100
commit0eb4792685539fb0f8417a8004101ec41acac3df (patch)
tree9caa961d61633d0b65bb53aac605c612124c0dac /src/input/keyeventdispatcherjob_p.h
parent12b7d45bc60bd413e74c5ec7cdf0f1e097088875 (diff)
Rename QNodeUuid to QNodeId
Change-Id: I0450a4d4708af1ccd3d4c8f2ddc5c9a5c9deca27 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/input/keyeventdispatcherjob_p.h')
-rw-r--r--src/input/keyeventdispatcherjob_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/keyeventdispatcherjob_p.h b/src/input/keyeventdispatcherjob_p.h
index 8dcf37c56..af6d52623 100644
--- a/src/input/keyeventdispatcherjob_p.h
+++ b/src/input/keyeventdispatcherjob_p.h
@@ -43,7 +43,7 @@
#define QT3D_INPUT_KEYEVENTDISPATCHERJOB_P_H
#include <Qt3DCore/qaspectjob.h>
-#include <Qt3DCore/qnodeuuid.h>
+#include <Qt3DCore/qnodeid.h>
#include <QKeyEvent>
QT_BEGIN_NAMESPACE
@@ -57,13 +57,13 @@ class InputHandler;
class KeyEventDispatcherJob : public QAspectJob
{
public:
- explicit KeyEventDispatcherJob(const QNodeUuid &input, const QList<QKeyEvent> &events);
+ explicit KeyEventDispatcherJob(const QNodeId &input, const QList<QKeyEvent> &events);
void setInputHandler(InputHandler *handler);
void run() Q_DECL_OVERRIDE;
private:
InputHandler *m_inputHandler;
- const QNodeUuid m_keyboardInput;
+ const QNodeId m_keyboardInput;
const QList<QKeyEvent> m_events;
};