summaryrefslogtreecommitdiff
path: root/src/gui/widgets
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-15 23:42:45 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-15 23:42:45 +0300
commit17e14e2d369e08d7300870fa592c5eac6e5e27ec (patch)
tree3bb8da0254118a7f1b217abcfa02cb9fc2ec7c48 /src/gui/widgets
parent628c14231ce3a1b88ce6082cffc234d2a59df60a (diff)
downloadplus-17e14e2d369e08d7300870fa592c5eac6e5e27ec.tar.gz
plus-17e14e2d369e08d7300870fa592c5eac6e5e27ec.tar.bz2
plus-17e14e2d369e08d7300870fa592c5eac6e5e27ec.tar.xz
plus-17e14e2d369e08d7300870fa592c5eac6e5e27ec.zip
Move opengllistmodel into separate file.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r--src/gui/widgets/tabs/setup_video.cpp18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/gui/widgets/tabs/setup_video.cpp b/src/gui/widgets/tabs/setup_video.cpp
index e33ea2919..be3697426 100644
--- a/src/gui/widgets/tabs/setup_video.cpp
+++ b/src/gui/widgets/tabs/setup_video.cpp
@@ -49,6 +49,7 @@
#include "test/testmain.h"
#include "gui/models/modelistmodel.h"
+#include "gui/models/opengllistmodel.h"
#include <algorithm>
@@ -56,23 +57,6 @@
extern Graphics *mainGraphics;
-class OpenGLListModel final : public ListModel
-{
-public:
- ~OpenGLListModel()
- { }
-
- int getNumberOfElements() override final
- { return renderModesListSize; }
-
- std::string getElementAt(int i) override final
- {
- if (i >= getNumberOfElements() || i < 0)
- return "???";
- return gettext(OPENGL_NAME[i]);
- }
-};
-
Setup_Video::Setup_Video(const Widget2 *const widget) :
SetupTab(widget),
KeyListener(),