From 0dc0baa25593b462517e0a8e603154dcd917cdc5 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Mon, 9 Apr 2018 20:40:11 +0300 Subject: [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. --- qt/search_panel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qt') 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 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)) -- cgit v1.2.3