diff options
Diffstat (limited to 'src/gui/models/ignorechoiceslistmodel.h')
-rw-r--r-- | src/gui/models/ignorechoiceslistmodel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/ignorechoiceslistmodel.h b/src/gui/models/ignorechoiceslistmodel.h index 8a8a7f053..b25c6874a 100644 --- a/src/gui/models/ignorechoiceslistmodel.h +++ b/src/gui/models/ignorechoiceslistmodel.h @@ -37,13 +37,13 @@ class IgnoreChoicesListModel final : public ListModel ~IgnoreChoicesListModel() { } - int getNumberOfElements() override final + int getNumberOfElements() final { return CAST_S32(player_relations. getPlayerIgnoreStrategies()->size()); } - std::string getElementAt(int i) override final + std::string getElementAt(int i) final { if (i >= getNumberOfElements() || i < 0) return "???"; |