GUI: Add override markers where appropriate

This commit is contained in:
Bastien Bouclet 2020-01-05 17:48:04 +01:00
parent 37b473cc0d
commit c566d02992
34 changed files with 237 additions and 237 deletions

View file

@ -89,7 +89,7 @@ public:
: EditTextWidget(boss, name, text, tooltip) {}
protected:
bool tryInsertChar(byte c, int pos) {
bool tryInsertChar(byte c, int pos) override {
if (Common::isAlnum(c) || c == '-' || c == '_') {
_editString.insertChar(c, pos);
return true;