[MSPAINT] s/HasUndoSteps/CanUndo/ and s/HasRedoSteps/CanRedo/

CORE-18867
This commit is contained in:
Katayama Hirofumi MZ 2023-06-13 18:24:42 +09:00
parent 1a88607387
commit fa4c3bd560
3 changed files with 6 additions and 6 deletions

View file

@ -176,12 +176,12 @@ BOOL ImageModel::IsImageSaved() const
return imageSaved;
}
BOOL ImageModel::HasUndoSteps() const
BOOL ImageModel::CanUndo() const
{
return undoSteps > 0;
}
BOOL ImageModel::HasRedoSteps() const
BOOL ImageModel::CanRedo() const
{
return redoSteps > 0;
}