mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:23:01 +00:00
[MSPAINT] s/HasUndoSteps/CanUndo/ and s/HasRedoSteps/CanRedo/
CORE-18867
This commit is contained in:
parent
1a88607387
commit
fa4c3bd560
3 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue