summaryrefslogtreecommitdiff
path: root/src/gui/models/worldlistmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/models/worldlistmodel.h')
-rw-r--r--src/gui/models/worldlistmodel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/worldlistmodel.h b/src/gui/models/worldlistmodel.h
index 035824cb4..4489cf95e 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() override final
+ int getNumberOfElements() final
{
return CAST_S32(mWorlds.size());
}
- std::string getElementAt(int i) override final
+ std::string getElementAt(int i) final
{
const WorldInfo *const si = mWorlds[i];
if (si)