aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@digia.com>2013-04-15 15:52:36 +0200
committerMarco Bubke <marco.bubke@digia.com>2013-04-16 16:52:20 +0200
commit2b698e31edb96217509db78f7a98c1ca2b77e735 (patch)
treea456a304d3f5d485908e793546667451bf91dfa9 /share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h
parente13e6550f5a8f0b1a4956630b8ba2dd097956efc (diff)
QmlDesigner: Add override to qml2puppet
Change-Id: Ibdf07c4a35b40f3fc78300a1675270f8295bec42 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
Diffstat (limited to 'share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h')
-rw-r--r--share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h
index 55f10bdfcc..5064812770 100644
--- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h
+++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h
@@ -40,15 +40,15 @@ class Qt5PreviewNodeInstanceServer : public Qt5NodeInstanceServer
public:
explicit Qt5PreviewNodeInstanceServer(NodeInstanceClientInterface *nodeInstanceClient);
- void createScene(const CreateSceneCommand &command);
- void changeState(const ChangeStateCommand &command);
- void removeSharedMemory(const RemoveSharedMemoryCommand &command);
+ void createScene(const CreateSceneCommand &command) Q_DECL_OVERRIDE;
+ void changeState(const ChangeStateCommand &command) Q_DECL_OVERRIDE;
+ void removeSharedMemory(const RemoveSharedMemoryCommand &command) Q_DECL_OVERRIDE;
QImage renderPreviewImage();
protected:
- void collectItemChangesAndSendChangeCommands();
- void startRenderTimer();
+ void collectItemChangesAndSendChangeCommands() Q_DECL_OVERRIDE;
+ void startRenderTimer() Q_DECL_OVERRIDE;
private:
ServerNodeInstance m_actualState;