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 275da2f31..cc040cb80 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() override final + int getNumberOfElements() final { return renderModesListSize; } - std::string getElementAt(int i) override final + std::string getElementAt(int i) final { if (i >= getNumberOfElements() || i < 0) return "???"; |