Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/qt
diff options
context:
space:
mode:
authorrachytski <siarhei.rachytski@gmail.com>2013-01-24 18:13:03 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:49:15 +0300
commitff587a108771ab12164f5bf78a64fb55c9144bb3 (patch)
tree7a93a269b64ed5f900430f704f962145cebe367d /qt
parentf70230b4b71771350a54a3321dfd0c900fff8043 (diff)
refactored qt_tstfrm to add support for gui_tests.
Diffstat (limited to 'qt')
-rw-r--r--qt/qt.pro1
-rw-r--r--qt/widgets.cpp48
2 files changed, 0 insertions, 49 deletions
diff --git a/qt/qt.pro b/qt/qt.pro
index cf0842a5a0..49196d145e 100644
--- a/qt/qt.pro
+++ b/qt/qt.pro
@@ -70,7 +70,6 @@ macx* {
SOURCES += \
main.cpp \
mainwindow.cpp \
- widgets.cpp \
draw_widget.cpp \
proxystyle.cpp \
slider_ctrl.cpp \
diff --git a/qt/widgets.cpp b/qt/widgets.cpp
deleted file mode 100644
index 903663b2bf..0000000000
--- a/qt/widgets.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/*#include "widgets.hpp"
-
-#include "../qt_tstfrm/widgets_impl.hpp"
-
-#include "../map/drawer.hpp"
-
-#include "../platform/platform.hpp"
-
-#include "../graphics/rendercontext.hpp"
-#include "../graphics/internal/opengl.hpp"
-
-
-namespace qt
-{
- template class GLDrawWidgetT<Drawer>;
-
- GLDrawWidget::GLDrawWidget(QWidget * pParent)
- : base_type(pParent)
- {
- }
-
- shared_ptr<GLDrawWidget::drawer_t> const & GLDrawWidget::GetDrawer() const
- {
- return m_p;
- }
-
- GLDrawWidget::~GLDrawWidget()
- {
- makeCurrent();
- m_p.reset();
- doneCurrent();
- }
-
- void GLDrawWidget::initializeGL()
- {
- }
-
- shared_ptr<graphics::gl::RenderContext> const & GLDrawWidget::renderContext()
- {
- return m_renderContext;
- }
-
- shared_ptr<graphics::ResourceManager> const & GLDrawWidget::resourceManager()
- {
- return m_resourceManager;
- }
-}
-*/