1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-23 22:37:55 +02:00

Changes to rest of the code according to review:

- renamed status bar method clearMatching -> clearIfMatching
- renamed class ColorShifterAddMul -> ColorShifterMultiplyAndAdd
- fixed missing return from function
- fixed potential access to deleted object
This commit is contained in:
Ivan Savenko
2022-12-11 23:43:43 +02:00
parent 49a6d056d9
commit ac839ad26a
15 changed files with 43 additions and 40 deletions

View File

@@ -221,7 +221,7 @@ class IStatusBar
public:
virtual ~IStatusBar();
virtual void clear() = 0;
virtual void clearMatching(const std::string & Text) = 0;
virtual void clearIfMatching(const std::string & Text) = 0;
virtual void write(const std::string & Text) = 0;
virtual void lock(bool shouldLock) = 0;
};