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/map
diff options
context:
space:
mode:
authorИлья Гречухин <i.grechuhin@gmail.com>2016-10-24 14:27:45 +0300
committerGitHub <noreply@github.com>2016-10-24 14:27:45 +0300
commitca68ae9ee236236284a89855e72c4bde2512f26d (patch)
tree991c88e3d418b2e3d5dcdf66de948d48e6cda04b /map
parent2243590024f661ec22aa14bc88e4098ff41a3865 (diff)
parent485e6d9fefce78c09599f47c79b226ddbc4b2278 (diff)
Merge pull request #4547 from VladiMihaylenko/vm-master
[ios] Place page bugfix.
Diffstat (limited to 'map')
-rw-r--r--map/place_page_info.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/map/place_page_info.cpp b/map/place_page_info.cpp
index 2d5e30b1bf..9cd2997405 100644
--- a/map/place_page_info.cpp
+++ b/map/place_page_info.cpp
@@ -72,6 +72,11 @@ string Info::GetSubtitle() const
// Type.
values.push_back(GetLocalizedType());
+ // Flats.
+ string const flats = GetFlats();
+ if (!flats.empty())
+ values.push_back(flats);
+
// Cuisines.
for (string const & cuisine : GetLocalizedCuisines())
values.push_back(cuisine);