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:
Diffstat (limited to 'qt')
-rw-r--r--qt/search_panel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/search_panel.cpp b/qt/search_panel.cpp
index 6a3baf7470..9757e9d4f7 100644
--- a/qt/search_panel.cpp
+++ b/qt/search_panel.cpp
@@ -262,8 +262,8 @@ void SearchPanel::OnSearchTextChanged(QString const & str)
auto const timestamp = ++m_timestamp;
m_params.m_onResults = [this, timestamp](search::Results const & results,
std::vector<search::ProductInfo> const & productInfo) {
- GetPlatform().RunTask(Platform::Thread::Gui, bind(&SearchPanel::OnSearchResults, this,
- timestamp, results));
+ GetPlatform().RunTask(Platform::Thread::Gui,
+ std::bind(&SearchPanel::OnSearchResults, this, timestamp, results));
};
if (m_pDrawWidget->Search(m_params))