From 49f618f651f4b0ae888c3126315141751d4ebc60 Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Thu, 11 Jan 2018 11:01:01 +0300 Subject: [PATCH] Fixed Qt build --- 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 7b8ea04972..bb30680135 100644 --- a/qt/search_panel.cpp +++ b/qt/search_panel.cpp @@ -115,7 +115,7 @@ void SearchPanel::OnSearchResults(uint64_t timestamp, search::Results const & re if (res.GetResultType() == search::Result::Type::Feature) { - m_pTable->setItem(rowCount, 0, CreateItem(QString::fromStdString(res.GetFeatureType()))); + m_pTable->setItem(rowCount, 0, CreateItem(QString::fromStdString(res.GetFeatureTypeName()))); m_pTable->setItem(rowCount, 3, CreateItem(m_pDrawWidget->GetDistance(res).c_str())); }