CMoveDirectoryCommand: Make use of override

This commit is contained in:
Lioncash 2020-07-03 12:39:23 -04:00
parent 70795c45d1
commit 616cc3cc1d

View File

@ -23,9 +23,9 @@ public:
, mNewParent(pNewParent->FullPath())
{}
void undo() { DoMove(mOldParent); }
void redo() { DoMove(mNewParent); }
bool AffectsCleanState() const { return false; }
void undo() override { DoMove(mOldParent); }
void redo() override { DoMove(mNewParent); }
bool AffectsCleanState() const override { return false; }
protected:
void DoMove(const TString& rkPath)