From 39e757250b6a0f6ee529d0736e18b442e0b1a3a4 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Sun, 12 Jun 2011 20:46:07 +0300 Subject: [PATCH] Fixed warning --- qt/search_panel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &)));