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:
authorExMix <rahuba.youri@gmail.com>2013-04-10 12:51:06 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:52:53 +0300
commitcfec1510a077ea8ff8485bbe6599dc64f8ce7749 (patch)
treec5b6280e52ef3429619eb33ba5c7a4bfeaf98d71 /qt
parent261134ebff78c71cc99b76fa082310838c7ef59b (diff)
Code style fix
Diffstat (limited to 'qt')
-rw-r--r--qt/draw_widget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/draw_widget.cpp b/qt/draw_widget.cpp
index ab15d0ab3c..1484437505 100644
--- a/qt/draw_widget.cpp
+++ b/qt/draw_widget.cpp
@@ -74,13 +74,13 @@ namespace qt
//m_timer = new QTimer(this);
//connect(m_timer, SIGNAL(timeout()), this, SLOT(ScaleTimerElapsed()));
for (size_t i = 0; i < ARRAY_SIZE(m_images); ++i)
- m_images[i] = 0;
+ m_images[i] = 0;
}
DrawWidget::~DrawWidget()
{
for (size_t i = 0; i < ARRAY_SIZE(m_images); ++i)
- delete m_images[i];
+ delete m_images[i];
m_framework.reset();
}