forked from qt-creator/qt-creator
qml2puppet: s/Q_DECL_OVERRIDE/override/g
Change-Id: I4c582486572df9d94c53163321212b15dcc042cf Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
This commit is contained in:
@@ -41,15 +41,15 @@ class Qt5PreviewNodeInstanceServer : public Qt5NodeInstanceServer
|
||||
public:
|
||||
explicit Qt5PreviewNodeInstanceServer(NodeInstanceClientInterface *nodeInstanceClient);
|
||||
|
||||
void createScene(const CreateSceneCommand &command) Q_DECL_OVERRIDE;
|
||||
void changeState(const ChangeStateCommand &command) Q_DECL_OVERRIDE;
|
||||
void removeSharedMemory(const RemoveSharedMemoryCommand &command) Q_DECL_OVERRIDE;
|
||||
void createScene(const CreateSceneCommand &command) override;
|
||||
void changeState(const ChangeStateCommand &command) override;
|
||||
void removeSharedMemory(const RemoveSharedMemoryCommand &command) override;
|
||||
|
||||
QImage renderPreviewImage();
|
||||
|
||||
protected:
|
||||
void collectItemChangesAndSendChangeCommands() Q_DECL_OVERRIDE;
|
||||
void startRenderTimer() Q_DECL_OVERRIDE;
|
||||
void collectItemChangesAndSendChangeCommands() override;
|
||||
void startRenderTimer() override;
|
||||
|
||||
private:
|
||||
ServerNodeInstance m_currentState;
|
||||
|
||||
Reference in New Issue
Block a user