diff options
Diffstat (limited to 'src/gui/models/opengllistmodel.h')
-rw-r--r-- | src/gui/models/opengllistmodel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/opengllistmodel.h b/src/gui/models/opengllistmodel.h index cc040cb80..275da2f31 100644 --- a/src/gui/models/opengllistmodel.h +++ b/src/gui/models/opengllistmodel.h @@ -33,10 +33,10 @@ class OpenGLListModel final : public ListModel ~OpenGLListModel() { } - int getNumberOfElements() final + int getNumberOfElements() override final { return renderModesListSize; } - std::string getElementAt(int i) final + std::string getElementAt(int i) override final { if (i >= getNumberOfElements() || i < 0) return "???"; |