summaryrefslogtreecommitdiffstats
path: root/src/input/keyeventdispatcherjob_p.h
diff options
context:
space:
mode:
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;
};