summaryrefslogtreecommitdiffstats
path: root/src/input
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2017-09-20 20:57:27 +0200
committerSean Harmer <sean.harmer@kdab.com>2017-09-25 10:42:42 +0000
commit43542ef59ac9324106a0690da3b808b23d5ab3a9 (patch)
tree2b632ce1cba8aed2c99c5a88297da8120f5940bb /src/input
parentc9eac1f67bda96bd8ff5205027bbfb70ad2807d7 (diff)
Replace Q_DECL_OVERRIDE with override
Change-Id: I92c955068e233c50043ad7d06a32300dd386c24d Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input')
-rw-r--r--src/input/backend/abstractaxisinput_p.h4
-rw-r--r--src/input/backend/action_p.h2
-rw-r--r--src/input/backend/actioninput_p.h4
-rw-r--r--src/input/backend/analogaxisinput_p.h2
-rw-r--r--src/input/backend/assignkeyboardfocusjob_p.h2
-rw-r--r--src/input/backend/axis_p.h2
-rw-r--r--src/input/backend/axisaccumulator_p.h2
-rw-r--r--src/input/backend/axissetting_p.h2
-rw-r--r--src/input/backend/buttonaxisinput_p.h2
-rw-r--r--src/input/backend/genericdevicebackendnode_p.h14
-rw-r--r--src/input/backend/inputchord_p.h4
-rw-r--r--src/input/backend/inputsequence_p.h4
-rw-r--r--src/input/backend/inputsettings_p.h8
-rw-r--r--src/input/backend/keyboarddevice_p.h14
-rw-r--r--src/input/backend/keyboardeventfilter_p.h2
-rw-r--r--src/input/backend/keyboardhandler_p.h8
-rw-r--r--src/input/backend/keyeventdispatcherjob_p.h2
-rw-r--r--src/input/backend/logicaldevice_p.h2
-rw-r--r--src/input/backend/mousedevice_p.h12
-rw-r--r--src/input/backend/mouseeventfilter_p.h2
-rw-r--r--src/input/backend/mousehandler_p.h8
-rw-r--r--src/input/backend/qabstractphysicaldevicebackendnode_p.h4
-rw-r--r--src/input/frontend/qabstractphysicaldevice.h2
-rw-r--r--src/input/frontend/qabstractphysicaldeviceproxy_p.h16
-rw-r--r--src/input/frontend/qaction.h4
-rw-r--r--src/input/frontend/qactioninput.h2
-rw-r--r--src/input/frontend/qanalogaxisinput.h2
-rw-r--r--src/input/frontend/qaxis.h4
-rw-r--r--src/input/frontend/qaxisaccumulator.h4
-rw-r--r--src/input/frontend/qaxissetting.h2
-rw-r--r--src/input/frontend/qbuttonaxisinput.h2
-rw-r--r--src/input/frontend/qinputaspect.h6
-rw-r--r--src/input/frontend/qinputchord.h2
-rw-r--r--src/input/frontend/qinputsequence.h2
-rw-r--r--src/input/frontend/qinputsettings.h2
-rw-r--r--src/input/frontend/qkeyboarddevice.h2
-rw-r--r--src/input/frontend/qkeyboardhandler.h4
-rw-r--r--src/input/frontend/qlogicaldevice.h2
-rw-r--r--src/input/frontend/qmousedevice.h4
-rw-r--r--src/input/frontend/qmousehandler.h4
40 files changed, 86 insertions, 86 deletions
diff --git a/src/input/backend/abstractaxisinput_p.h b/src/input/backend/abstractaxisinput_p.h
index 8ce43bce8..765e2214f 100644
--- a/src/input/backend/abstractaxisinput_p.h
+++ b/src/input/backend/abstractaxisinput_p.h
@@ -70,13 +70,13 @@ public:
virtual void cleanup();
inline Qt3DCore::QNodeId sourceDevice() const { return m_sourceDevice; }
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
virtual float process(InputHandler *inputHandler, qint64 currentTime) = 0;
protected:
AbstractAxisInput();
- void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_OVERRIDE;
+ void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) override;
Qt3DCore::QNodeId m_sourceDevice;
};
diff --git a/src/input/backend/action_p.h b/src/input/backend/action_p.h
index ee686413f..6a6a867c2 100644
--- a/src/input/backend/action_p.h
+++ b/src/input/backend/action_p.h
@@ -68,7 +68,7 @@ public:
inline QVector<Qt3DCore::QNodeId> inputs() const { return m_inputs; }
inline bool actionTriggered() const { return m_actionTriggered; }
void setActionTriggered(bool actionTriggered);
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
diff --git a/src/input/backend/actioninput_p.h b/src/input/backend/actioninput_p.h
index 3059f66cf..7f297b73b 100644
--- a/src/input/backend/actioninput_p.h
+++ b/src/input/backend/actioninput_p.h
@@ -69,9 +69,9 @@ public:
inline QVector<int> buttons() const { return m_buttons; }
inline Qt3DCore::QNodeId sourceDevice() const { return m_sourceDevice; }
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
- bool process(InputHandler *inputHandler, qint64 currentTime) Q_DECL_OVERRIDE;
+ bool process(InputHandler *inputHandler, qint64 currentTime) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
diff --git a/src/input/backend/analogaxisinput_p.h b/src/input/backend/analogaxisinput_p.h
index 154ef5378..640aff709 100644
--- a/src/input/backend/analogaxisinput_p.h
+++ b/src/input/backend/analogaxisinput_p.h
@@ -68,7 +68,7 @@ public:
inline int axis() const { return m_axis; }
void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_FINAL;
- float process(InputHandler *inputHandler, qint64 currentTime) Q_DECL_OVERRIDE;
+ float process(InputHandler *inputHandler, qint64 currentTime) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
diff --git a/src/input/backend/assignkeyboardfocusjob_p.h b/src/input/backend/assignkeyboardfocusjob_p.h
index 44966554d..8a74de85f 100644
--- a/src/input/backend/assignkeyboardfocusjob_p.h
+++ b/src/input/backend/assignkeyboardfocusjob_p.h
@@ -66,7 +66,7 @@ class AssignKeyboardFocusJob : public Qt3DCore::QAspectJob
public:
explicit AssignKeyboardFocusJob(Qt3DCore::QNodeId keyboardDevice);
void setInputHandler(InputHandler *handler);
- void run() Q_DECL_OVERRIDE;
+ void run() override;
private:
InputHandler *m_inputHandler;
diff --git a/src/input/backend/axis_p.h b/src/input/backend/axis_p.h
index e62f70d34..73150c522 100644
--- a/src/input/backend/axis_p.h
+++ b/src/input/backend/axis_p.h
@@ -68,7 +68,7 @@ public:
inline QVector<Qt3DCore::QNodeId> inputs() const { return m_inputs; }
inline float axisValue() const { return m_axisValue; }
void setAxisValue(float axisValue);
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
diff --git a/src/input/backend/axisaccumulator_p.h b/src/input/backend/axisaccumulator_p.h
index 7d6799eb0..246020cb3 100644
--- a/src/input/backend/axisaccumulator_p.h
+++ b/src/input/backend/axisaccumulator_p.h
@@ -78,7 +78,7 @@ public:
float velocity() const Q_DECL_NOTHROW { return m_velocity; }
void setVelocity(float velocity);
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
void stepIntegration(AxisManager *axisManager, float dt);
diff --git a/src/input/backend/axissetting_p.h b/src/input/backend/axissetting_p.h
index 190312bd8..c26d3850c 100644
--- a/src/input/backend/axissetting_p.h
+++ b/src/input/backend/axissetting_p.h
@@ -69,7 +69,7 @@ public:
inline bool isSmoothEnabled() const { return m_smooth; }
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
diff --git a/src/input/backend/buttonaxisinput_p.h b/src/input/backend/buttonaxisinput_p.h
index 05724567c..5ed5b6b52 100644
--- a/src/input/backend/buttonaxisinput_p.h
+++ b/src/input/backend/buttonaxisinput_p.h
@@ -80,7 +80,7 @@ public:
void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_FINAL;
- float process(InputHandler *inputHandler, qint64 currentTime) Q_DECL_OVERRIDE;
+ float process(InputHandler *inputHandler, qint64 currentTime) override;
private:
void updateSpeedRatio(qint64 currentTime, UpdateType type);
diff --git a/src/input/backend/genericdevicebackendnode_p.h b/src/input/backend/genericdevicebackendnode_p.h
index 16aaf3e5b..c3ee1e467 100644
--- a/src/input/backend/genericdevicebackendnode_p.h
+++ b/src/input/backend/genericdevicebackendnode_p.h
@@ -73,10 +73,10 @@ public:
void updateEvents();
// QAbstractPhysicalDeviceBackendNode interface
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
- void cleanup() Q_DECL_OVERRIDE;
- float axisValue(int axisIdentifier) const Q_DECL_OVERRIDE;
- bool isButtonPressed(int buttonIdentifier) const Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
+ void cleanup() override;
+ float axisValue(int axisIdentifier) const override;
+ bool isButtonPressed(int buttonIdentifier) const override;
private:
QHash<int, qreal> m_axesValues;
@@ -89,9 +89,9 @@ class GenericDeviceBackendFunctor : public Qt3DCore::QBackendNodeMapper
public:
explicit GenericDeviceBackendFunctor(QInputAspect *inputaspect, InputHandler *handler);
- Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const Q_DECL_OVERRIDE;
- Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
- void destroy(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
+ Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const override;
+ Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const override;
+ void destroy(Qt3DCore::QNodeId id) const override;
private:
QInputAspect *m_inputAspect;
diff --git a/src/input/backend/inputchord_p.h b/src/input/backend/inputchord_p.h
index 95557a00d..3d3a53c50 100644
--- a/src/input/backend/inputchord_p.h
+++ b/src/input/backend/inputchord_p.h
@@ -73,9 +73,9 @@ public:
void setStartTime(qint64 time);
void reset();
bool actionTriggered(Qt3DCore::QNodeId input);
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
- bool process(InputHandler *inputHandler, qint64 currentTime) Q_DECL_OVERRIDE;
+ bool process(InputHandler *inputHandler, qint64 currentTime) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
diff --git a/src/input/backend/inputsequence_p.h b/src/input/backend/inputsequence_p.h
index a9fa2dd2f..b9a577c3e 100644
--- a/src/input/backend/inputsequence_p.h
+++ b/src/input/backend/inputsequence_p.h
@@ -75,9 +75,9 @@ public:
bool sequenceTriggered() const;
void reset();
bool actionTriggered(Qt3DCore::QNodeId input, const qint64 currentTime);
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
- bool process(InputHandler *inputHandler, qint64 currentTime) Q_DECL_OVERRIDE;
+ bool process(InputHandler *inputHandler, qint64 currentTime) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
diff --git a/src/input/backend/inputsettings_p.h b/src/input/backend/inputsettings_p.h
index 2fee6c946..05beb5c67 100644
--- a/src/input/backend/inputsettings_p.h
+++ b/src/input/backend/inputsettings_p.h
@@ -69,7 +69,7 @@ public:
inline QObject *eventSource() const { return m_eventSource; }
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
@@ -82,9 +82,9 @@ class InputSettingsFunctor : public Qt3DCore::QBackendNodeMapper
public:
explicit InputSettingsFunctor(InputHandler *handler);
- Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const Q_DECL_OVERRIDE;
- Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
- void destroy(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
+ Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const override;
+ Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const override;
+ void destroy(Qt3DCore::QNodeId id) const override;
private:
InputHandler *m_handler;
diff --git a/src/input/backend/keyboarddevice_p.h b/src/input/backend/keyboarddevice_p.h
index 611a06233..781e8ead5 100644
--- a/src/input/backend/keyboarddevice_p.h
+++ b/src/input/backend/keyboarddevice_p.h
@@ -71,15 +71,15 @@ class Q_AUTOTEST_EXPORT KeyboardDevice : public Qt3DInput::QAbstractPhysicalDevi
{
public:
KeyboardDevice();
- void cleanup() Q_DECL_OVERRIDE;
+ void cleanup() override;
void requestFocusForInput(Qt3DCore::QNodeId inputId);
void setInputHandler(InputHandler *handler);
void setCurrentFocusItem(Qt3DCore::QNodeId input);
- float axisValue(int axisIdentifier) const Q_DECL_OVERRIDE;
- bool isButtonPressed(int buttonIdentifier) const Q_DECL_OVERRIDE;
+ float axisValue(int axisIdentifier) const override;
+ bool isButtonPressed(int buttonIdentifier) const override;
void updateKeyEvents(const QList<QT_PREPEND_NAMESPACE(QKeyEvent)> &events);
@@ -87,7 +87,7 @@ public:
inline Qt3DCore::QNodeId lastKeyboardInputRequester() const { return m_lastRequester; }
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &) override;
private:
void setButtonValue(int key, bool value);
@@ -268,9 +268,9 @@ class KeyboardDeviceFunctor : public Qt3DCore::QBackendNodeMapper
public:
explicit KeyboardDeviceFunctor(QInputAspect *inputaspect, InputHandler *handler);
- Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const Q_DECL_OVERRIDE;
- Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
- void destroy(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
+ Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const override;
+ Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const override;
+ void destroy(Qt3DCore::QNodeId id) const override;
private:
QInputAspect *m_inputAspect;
diff --git a/src/input/backend/keyboardeventfilter_p.h b/src/input/backend/keyboardeventfilter_p.h
index 46b8071cd..bcf062506 100644
--- a/src/input/backend/keyboardeventfilter_p.h
+++ b/src/input/backend/keyboardeventfilter_p.h
@@ -69,7 +69,7 @@ public:
inline InputHandler *inputHandler() const { return m_inputHandler; }
protected:
- bool eventFilter(QObject *obj, QEvent *e) Q_DECL_OVERRIDE;
+ bool eventFilter(QObject *obj, QEvent *e) override;
private:
InputHandler *m_inputHandler;
diff --git a/src/input/backend/keyboardhandler_p.h b/src/input/backend/keyboardhandler_p.h
index e2aeab4f3..cc1575f2a 100644
--- a/src/input/backend/keyboardhandler_p.h
+++ b/src/input/backend/keyboardhandler_p.h
@@ -75,7 +75,7 @@ public:
inline bool focus() const { return m_focus; }
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
protected:
void requestFocus();
@@ -94,9 +94,9 @@ class KeyboardHandlerFunctor : public Qt3DCore::QBackendNodeMapper
public:
explicit KeyboardHandlerFunctor(InputHandler *handler);
- Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const Q_DECL_OVERRIDE;
- Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
- void destroy(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
+ Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const override;
+ Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const override;
+ void destroy(Qt3DCore::QNodeId id) const override;
private:
InputHandler *m_handler;
diff --git a/src/input/backend/keyeventdispatcherjob_p.h b/src/input/backend/keyeventdispatcherjob_p.h
index 1456f0878..be2364ac9 100644
--- a/src/input/backend/keyeventdispatcherjob_p.h
+++ b/src/input/backend/keyeventdispatcherjob_p.h
@@ -67,7 +67,7 @@ class KeyEventDispatcherJob : public Qt3DCore::QAspectJob
public:
explicit KeyEventDispatcherJob(Qt3DCore::QNodeId input, const QList<QT_PREPEND_NAMESPACE(QKeyEvent)> &events);
void setInputHandler(InputHandler *handler);
- void run() Q_DECL_OVERRIDE;
+ void run() override;
private:
InputHandler *m_inputHandler;
diff --git a/src/input/backend/logicaldevice_p.h b/src/input/backend/logicaldevice_p.h
index 38d4e2dd5..e24d7a359 100644
--- a/src/input/backend/logicaldevice_p.h
+++ b/src/input/backend/logicaldevice_p.h
@@ -71,7 +71,7 @@ public:
inline QVector<Qt3DCore::QNodeId> axes() const { return m_axes; }
inline QVector<Qt3DCore::QNodeId> actions() const { return m_actions; }
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
diff --git a/src/input/backend/mousedevice_p.h b/src/input/backend/mousedevice_p.h
index a085194ff..510e9c9b5 100644
--- a/src/input/backend/mousedevice_p.h
+++ b/src/input/backend/mousedevice_p.h
@@ -95,8 +95,8 @@ public:
void setInputHandler(InputHandler *handler);
InputHandler *inputHandler() const;
- float axisValue(int axisIdentifier) const Q_DECL_OVERRIDE;
- bool isButtonPressed(int buttonIdentifier) const Q_DECL_OVERRIDE;
+ float axisValue(int axisIdentifier) const override;
+ bool isButtonPressed(int buttonIdentifier) const override;
void updateMouseEvents(const QList<QT_PREPEND_NAMESPACE(QMouseEvent)> &events);
#if QT_CONFIG(wheelevent)
@@ -108,7 +108,7 @@ public:
bool wasPressed() const;
float sensitivity() const;
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
private:
void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_FINAL;
@@ -126,9 +126,9 @@ class MouseDeviceFunctor : public Qt3DCore::QBackendNodeMapper
public:
explicit MouseDeviceFunctor(Qt3DInput::QInputAspect *inputAspect, InputHandler *handler);
- Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const Q_DECL_OVERRIDE;
- Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
- void destroy(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
+ Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const override;
+ Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const override;
+ void destroy(Qt3DCore::QNodeId id) const override;
private:
QInputAspect *m_inputAspect;
diff --git a/src/input/backend/mouseeventfilter_p.h b/src/input/backend/mouseeventfilter_p.h
index 340524a61..135b1afcf 100644
--- a/src/input/backend/mouseeventfilter_p.h
+++ b/src/input/backend/mouseeventfilter_p.h
@@ -69,7 +69,7 @@ public:
inline InputHandler *inputHandler() const { return m_inputHandler; }
protected:
- bool eventFilter(QObject *obj, QEvent *e) Q_DECL_OVERRIDE;
+ bool eventFilter(QObject *obj, QEvent *e) override;
private:
InputHandler *m_inputHandler;
diff --git a/src/input/backend/mousehandler_p.h b/src/input/backend/mousehandler_p.h
index ae484d8d6..3d32d9864 100644
--- a/src/input/backend/mousehandler_p.h
+++ b/src/input/backend/mousehandler_p.h
@@ -75,7 +75,7 @@ public:
#endif
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
void setDevice(Qt3DCore::QNodeId device);
private:
@@ -90,9 +90,9 @@ class MouseHandlerFunctor : public Qt3DCore::QBackendNodeMapper
public:
explicit MouseHandlerFunctor(InputHandler *handler);
- Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const Q_DECL_OVERRIDE;
- Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
- void destroy(Qt3DCore::QNodeId id) const Q_DECL_OVERRIDE;
+ Qt3DCore::QBackendNode *create(const Qt3DCore::QNodeCreatedChangeBasePtr &change) const override;
+ Qt3DCore::QBackendNode *get(Qt3DCore::QNodeId id) const override;
+ void destroy(Qt3DCore::QNodeId id) const override;
private:
InputHandler *m_handler;
diff --git a/src/input/backend/qabstractphysicaldevicebackendnode_p.h b/src/input/backend/qabstractphysicaldevicebackendnode_p.h
index 272143c45..339ad7324 100644
--- a/src/input/backend/qabstractphysicaldevicebackendnode_p.h
+++ b/src/input/backend/qabstractphysicaldevicebackendnode_p.h
@@ -71,7 +71,7 @@ class QT3DINPUTSHARED_PRIVATE_EXPORT QAbstractPhysicalDeviceBackendNode : public
public:
explicit QAbstractPhysicalDeviceBackendNode(QBackendNode::Mode mode);
virtual void cleanup();
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) override;
void setInputAspect(QInputAspect *aspect);
QInputAspect *inputAspect() const;
@@ -83,7 +83,7 @@ public:
protected:
QAbstractPhysicalDeviceBackendNode(QAbstractPhysicalDeviceBackendNodePrivate &dd);
- void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) Q_DECL_OVERRIDE;
+ void initializeFromPeer(const Qt3DCore::QNodeCreatedChangeBasePtr &change) override;
Q_DECLARE_PRIVATE(QAbstractPhysicalDeviceBackendNode)
};
diff --git a/src/input/frontend/qabstractphysicaldevice.h b/src/input/frontend/qabstractphysicaldevice.h
index 8c0abae4e..bf93bc955 100644
--- a/src/input/frontend/qabstractphysicaldevice.h
+++ b/src/input/frontend/qabstractphysicaldevice.h
@@ -75,7 +75,7 @@ public:
protected:
QAbstractPhysicalDevice(QAbstractPhysicalDevicePrivate &dd, Qt3DCore::QNode *parent = nullptr);
Q_DECLARE_PRIVATE(QAbstractPhysicalDevice)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qabstractphysicaldeviceproxy_p.h b/src/input/frontend/qabstractphysicaldeviceproxy_p.h
index 6d44ad2cd..64c634733 100644
--- a/src/input/frontend/qabstractphysicaldeviceproxy_p.h
+++ b/src/input/frontend/qabstractphysicaldeviceproxy_p.h
@@ -77,21 +77,21 @@ public:
QString deviceName() const;
DeviceStatus status() const;
- int axisCount() const Q_DECL_OVERRIDE;
- int buttonCount() const Q_DECL_OVERRIDE;
- QStringList axisNames() const Q_DECL_OVERRIDE;
- QStringList buttonNames() const Q_DECL_OVERRIDE;
- int axisIdentifier(const QString &name) const Q_DECL_OVERRIDE;
- int buttonIdentifier(const QString &name) const Q_DECL_OVERRIDE;
+ int axisCount() const override;
+ int buttonCount() const override;
+ QStringList axisNames() const override;
+ QStringList buttonNames() const override;
+ int axisIdentifier(const QString &name) const override;
+ int buttonIdentifier(const QString &name) const override;
Q_SIGNALS:
void statusChanged(QAbstractPhysicalDeviceProxy::DeviceStatus status);
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) override;
QAbstractPhysicalDeviceProxy(QAbstractPhysicalDeviceProxyPrivate &dd, Qt3DCore::QNode *parent = nullptr);
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
private:
void setDevice(QAbstractPhysicalDevice *device);
diff --git a/src/input/frontend/qaction.h b/src/input/frontend/qaction.h
index 937f2ec99..4b282e0b9 100644
--- a/src/input/frontend/qaction.h
+++ b/src/input/frontend/qaction.h
@@ -68,11 +68,11 @@ Q_SIGNALS:
void activeChanged(bool isActive);
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) override;
private:
Q_DECLARE_PRIVATE(QAction)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qactioninput.h b/src/input/frontend/qactioninput.h
index 580afaf2e..c4c2c934f 100644
--- a/src/input/frontend/qactioninput.h
+++ b/src/input/frontend/qactioninput.h
@@ -74,7 +74,7 @@ Q_SIGNALS:
private:
Q_DECLARE_PRIVATE(QActionInput)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qanalogaxisinput.h b/src/input/frontend/qanalogaxisinput.h
index f5523d0dd..9fe221b61 100644
--- a/src/input/frontend/qanalogaxisinput.h
+++ b/src/input/frontend/qanalogaxisinput.h
@@ -68,7 +68,7 @@ Q_SIGNALS:
private:
Q_DECLARE_PRIVATE(QAnalogAxisInput)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qaxis.h b/src/input/frontend/qaxis.h
index 92abd9c0d..a6d0b3b1f 100644
--- a/src/input/frontend/qaxis.h
+++ b/src/input/frontend/qaxis.h
@@ -67,11 +67,11 @@ Q_SIGNALS:
void valueChanged(float value);
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) override;
private:
Q_DECLARE_PRIVATE(QAxis)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qaxisaccumulator.h b/src/input/frontend/qaxisaccumulator.h
index b31f57a48..633713bb9 100644
--- a/src/input/frontend/qaxisaccumulator.h
+++ b/src/input/frontend/qaxisaccumulator.h
@@ -88,11 +88,11 @@ Q_SIGNALS:
void scaleChanged(float scale);
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) override;
private:
Q_DECLARE_PRIVATE(QAxisAccumulator)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // namespace Qt3DInput
diff --git a/src/input/frontend/qaxissetting.h b/src/input/frontend/qaxissetting.h
index b3d244e15..196dec735 100644
--- a/src/input/frontend/qaxissetting.h
+++ b/src/input/frontend/qaxissetting.h
@@ -77,7 +77,7 @@ Q_SIGNALS:
private:
Q_DECLARE_PRIVATE(QAxisSetting)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // namespace Qt3DInput
diff --git a/src/input/frontend/qbuttonaxisinput.h b/src/input/frontend/qbuttonaxisinput.h
index 3e9aacc00..38223b6bf 100644
--- a/src/input/frontend/qbuttonaxisinput.h
+++ b/src/input/frontend/qbuttonaxisinput.h
@@ -83,7 +83,7 @@ Q_SIGNALS:
private:
Q_DECLARE_PRIVATE(QButtonAxisInput)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qinputaspect.h b/src/input/frontend/qinputaspect.h
index bc35256b6..90781d297 100644
--- a/src/input/frontend/qinputaspect.h
+++ b/src/input/frontend/qinputaspect.h
@@ -62,10 +62,10 @@ public:
QStringList availablePhysicalDevices() const;
private:
- QVector<Qt3DCore::QAspectJobPtr> jobsToExecute(qint64 time) Q_DECL_OVERRIDE;
+ QVector<Qt3DCore::QAspectJobPtr> jobsToExecute(qint64 time) override;
- void onRegistered() Q_DECL_OVERRIDE;
- void onUnregistered() Q_DECL_OVERRIDE;
+ void onRegistered() override;
+ void onUnregistered() override;
Q_DECLARE_PRIVATE(QInputAspect)
explicit QInputAspect(QInputAspectPrivate &dd, QObject *parent);
diff --git a/src/input/frontend/qinputchord.h b/src/input/frontend/qinputchord.h
index 1fc69bd1b..cfc5806d7 100644
--- a/src/input/frontend/qinputchord.h
+++ b/src/input/frontend/qinputchord.h
@@ -74,7 +74,7 @@ Q_SIGNALS:
private:
Q_DECLARE_PRIVATE(QInputChord)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qinputsequence.h b/src/input/frontend/qinputsequence.h
index 6e08bc649..acdad12d2 100644
--- a/src/input/frontend/qinputsequence.h
+++ b/src/input/frontend/qinputsequence.h
@@ -78,7 +78,7 @@ Q_SIGNALS:
private:
Q_DECLARE_PRIVATE(QInputSequence)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qinputsettings.h b/src/input/frontend/qinputsettings.h
index 4f4d746f6..10f25d6ee 100644
--- a/src/input/frontend/qinputsettings.h
+++ b/src/input/frontend/qinputsettings.h
@@ -67,7 +67,7 @@ Q_SIGNALS:
private:
Q_DECLARE_PRIVATE(QInputSettings)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
void eventSourceDestroyed();
};
diff --git a/src/input/frontend/qkeyboarddevice.h b/src/input/frontend/qkeyboarddevice.h
index a0baf255e..615fb79b9 100644
--- a/src/input/frontend/qkeyboarddevice.h
+++ b/src/input/frontend/qkeyboarddevice.h
@@ -71,7 +71,7 @@ public:
protected:
explicit QKeyboardDevice(QKeyboardDevicePrivate &dd, QNode *parent = nullptr);
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) override;
Q_SIGNALS:
void activeInputChanged(QKeyboardHandler *activeInput);
diff --git a/src/input/frontend/qkeyboardhandler.h b/src/input/frontend/qkeyboardhandler.h
index ba1959bfe..02b4fe1db 100644
--- a/src/input/frontend/qkeyboardhandler.h
+++ b/src/input/frontend/qkeyboardhandler.h
@@ -116,11 +116,11 @@ Q_SIGNALS:
void released(Qt3DInput::QKeyEvent *event);
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) override;
private:
Q_DECLARE_PRIVATE(QKeyboardHandler)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // namespace Qt3DInput
diff --git a/src/input/frontend/qlogicaldevice.h b/src/input/frontend/qlogicaldevice.h
index f60cfe2b1..4b32a0c90 100644
--- a/src/input/frontend/qlogicaldevice.h
+++ b/src/input/frontend/qlogicaldevice.h
@@ -68,7 +68,7 @@ public:
private:
Q_DECLARE_PRIVATE(QLogicalDevice)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // Qt3DInput
diff --git a/src/input/frontend/qmousedevice.h b/src/input/frontend/qmousedevice.h
index 93ee99256..1e41843b9 100644
--- a/src/input/frontend/qmousedevice.h
+++ b/src/input/frontend/qmousedevice.h
@@ -85,11 +85,11 @@ Q_SIGNALS:
void sensitivityChanged(float value);
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) override;
private:
Q_DECLARE_PRIVATE(QMouseDevice)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // namespace Qt3DInput
diff --git a/src/input/frontend/qmousehandler.h b/src/input/frontend/qmousehandler.h
index ef4267c5c..50f7b028a 100644
--- a/src/input/frontend/qmousehandler.h
+++ b/src/input/frontend/qmousehandler.h
@@ -87,12 +87,12 @@ Q_SIGNALS:
#endif
protected:
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
+ void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) override;
void setContainsMouse(bool contains);
private:
Q_DECLARE_PRIVATE(QMouseHandler)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
+ Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const override;
};
} // namespace Qt3DInput