summaryrefslogtreecommitdiff
path: root/src/gui/models/keylistmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/models/keylistmodel.h')
-rw-r--r--src/gui/models/keylistmodel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/keylistmodel.h b/src/gui/models/keylistmodel.h
index d9f04a634..101307f30 100644
--- a/src/gui/models/keylistmodel.h
+++ b/src/gui/models/keylistmodel.h
@@ -52,13 +52,13 @@ class KeyListModel final : public ListModel
/**
* Returns the number of elements in container.
*/
- int getNumberOfElements() final
+ int getNumberOfElements() override final
{ return mSize; }
/**
* Returns element from container.
*/
- std::string getElementAt(int i) final
+ std::string getElementAt(int i) override final
{ return setupActionData[mSelectedData][i].text; }
/**