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:
authorMaxim Pimenov <m@maps.me>2018-04-09 20:40:11 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2018-04-11 14:27:47 +0300
commit0dc0baa25593b462517e0a8e603154dcd917cdc5 (patch)
tree93452601558bbb6260e55962ba5360ebda8699ee /qt
parentb333719087bbe70c2e3d6ec03151b131670e2d26 (diff)
[coding] [geometry] Refactored geometry serialization.
This commit moves all the code related to geometry serialization from indexer/ and coding/ to a single place, namely coding/geometry_coding.{c,h}pp.
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))