QmlDesigner: Add override to qml2puppet

Change-Id: Ibdf07c4a35b40f3fc78300a1675270f8295bec42
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Marco Bubke
2013-04-15 15:52:36 +02:00
parent e13e6550f5
commit 2b698e31ed
18 changed files with 106 additions and 109 deletions
@@ -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;