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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2018-01-11 11:01:01 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2018-01-11 11:03:06 +0300
commit49f618f651f4b0ae888c3126315141751d4ebc60 (patch)
treef55c0aa169651cd63c047e1cab84ccbdd42786a1 /qt
parent6a760bc7ddb298f95d8cda15c9e87125173d7d4e (diff)
Fixed Qt build
Diffstat (limited to 'qt')
-rw-r--r--qt/search_panel.cpp2
1 files changed, 1 insertions, 1 deletions
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()));
}