CEditLinkCommand: Make use of override where applicable
This commit is contained in:
parent
2a068bdbef
commit
fb30162a8f
|
@ -21,9 +21,9 @@ class CEditLinkCommand : public IUndoCommand
|
||||||
public:
|
public:
|
||||||
CEditLinkCommand(CWorldEditor *pEditor, CLink *pLink, CLink NewLink);
|
CEditLinkCommand(CWorldEditor *pEditor, CLink *pLink, CLink NewLink);
|
||||||
QList<CScriptObject*> AffectedInstances() const;
|
QList<CScriptObject*> AffectedInstances() const;
|
||||||
void undo();
|
void undo() override;
|
||||||
void redo();
|
void redo() override;
|
||||||
bool AffectsCleanState() const { return true; }
|
bool AffectsCleanState() const override { return true; }
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // CEDITLINKCOMMAND_H
|
#endif // CEDITLINKCOMMAND_H
|
||||||
|
|
Loading…
Reference in New Issue