diff options
Diffstat (limited to 'src/gui/models/worldlistmodel.h')
-rw-r--r-- | src/gui/models/worldlistmodel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/worldlistmodel.h b/src/gui/models/worldlistmodel.h index 4489cf95e..035824cb4 100644 --- a/src/gui/models/worldlistmodel.h +++ b/src/gui/models/worldlistmodel.h @@ -45,12 +45,12 @@ class WorldListModel final : public ListModel ~WorldListModel() { } - int getNumberOfElements() final + int getNumberOfElements() override final { return CAST_S32(mWorlds.size()); } - std::string getElementAt(int i) final + std::string getElementAt(int i) override final { const WorldInfo *const si = mWorlds[i]; if (si) |