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-06-12 21:46:07 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:19:34 +0300
commit39e757250b6a0f6ee529d0736e18b442e0b1a3a4 (patch)
tree52f8bc3704bfd86af6302d108b0be31a2f485d47 /qt/search_panel.cpp
parenta03961d09786de95007c1ab346480312e0909345 (diff)
Fixed warning
Diffstat (limited to 'qt/search_panel.cpp')
-rw-r--r--qt/search_panel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/search_panel.cpp b/qt/search_panel.cpp
index 493a6efe52..e2ea9b1fd6 100644
--- a/qt/search_panel.cpp
+++ b/qt/search_panel.cpp
@@ -20,7 +20,7 @@ namespace qt
{
SearchPanel::SearchPanel(DrawWidget * drawWidget, QWidget * parent)
- : QWidget(parent), m_pDrawWidget(drawWidget), m_queryId(0), m_busyIcon(":/ui/busy.png")
+ : QWidget(parent), m_pDrawWidget(drawWidget), m_busyIcon(":/ui/busy.png"), m_queryId(0)
{
m_pEditor = new QLineEdit(this);
connect(m_pEditor, SIGNAL(textChanged(QString const &)), this, SLOT(OnSearchTextChanged(QString const &)));