[fix] Add switch clauses for Level in qt, and fix compilation error in diff_scheme

This commit is contained in:
Ilya Zverev 2017-08-25 17:17:32 +03:00 committed by Vladimir Byko-Ianko
parent 8b362cf180
commit 392286bd8b
3 changed files with 7 additions and 1 deletions

View file

@ -152,6 +152,7 @@ EditorDialog::EditorDialog(QWidget * parent, osm::EditableMapObject & emo)
case osm::Props::Wikipedia: v = emo.GetWikipedia(); break;
case osm::Props::Flats: v = emo.GetFlats(); break;
case osm::Props::BuildingLevels: v = emo.GetBuildingLevels(); break;
case osm::Props::Level: v = emo.GetLevel(); break;
}
QString const fieldName = QString::fromStdString(DebugPrint(prop));
grid->addWidget(new QLabel(fieldName), row, 0);
@ -269,6 +270,7 @@ void EditorDialog::OnSave()
case osm::Props::Wikipedia: m_feature.SetWikipedia(v); break;
case osm::Props::Flats: m_feature.SetFlats(v); break;
case osm::Props::BuildingLevels: m_feature.SetBuildingLevels(v); break;
case osm::Props::Level: m_feature.SetLevel(v); break;
}
}
accept();

View file

@ -146,6 +146,10 @@ PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info
k = "Building Levels";
v = info.GetBuildingLevels();
break;
case osm::Props::Level:
k = "Level";
v = info.GetLevel();
break;
}
grid->addWidget(new QLabel(k), row, 0);
QLabel * label = new QLabel(QString::fromStdString(v));

View file

@ -112,7 +112,7 @@ namespace diffs
NameFileInfoMap Checker::Check(LocalMapsInfo const & info)
{
if (info.m_localMaps.empty())
return {};
return NameFileInfoMap();
platform::HttpClient request(DIFF_LIST_URL);
string const body = SerializeCheckerData(info);