diff options
Diffstat (limited to 'src/gui/models/sortlistmodelinv.h')
-rw-r--r-- | src/gui/models/sortlistmodelinv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/sortlistmodelinv.h b/src/gui/models/sortlistmodelinv.h index 103ffb26c..09dbbc53e 100644 --- a/src/gui/models/sortlistmodelinv.h +++ b/src/gui/models/sortlistmodelinv.h @@ -48,10 +48,10 @@ class SortListModelInv final : public ListModel ~SortListModelInv() { } - int getNumberOfElements() final + int getNumberOfElements() override final { return 6; } - std::string getElementAt(int i) final + std::string getElementAt(int i) override final { if (i >= getNumberOfElements() || i < 0) return "???"; |