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
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2011-08-01 18:38:13 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:21:13 +0300
commit69a244a430780fdab6565aa7984a751480bf19eb (patch)
treea3af45da598442adc1c0fc078a4b9938516f6ea5 /qt_tstfrm
parent9fed77e8de85f0310d0555509010d436c003ab62 (diff)
[clang] Compilation and warning fixes
Diffstat (limited to 'qt_tstfrm')
-rw-r--r--qt_tstfrm/widgets_impl.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt_tstfrm/widgets_impl.hpp b/qt_tstfrm/widgets_impl.hpp
index 00612904cc..0d16b8c937 100644
--- a/qt_tstfrm/widgets_impl.hpp
+++ b/qt_tstfrm/widgets_impl.hpp
@@ -12,7 +12,7 @@ namespace qt
void GLDrawWidgetT<T>::paintGL()
{
if (m_p)
- DoDraw(m_p);
+ this->DoDraw(m_p);
}
template <class T>