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:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2016-03-15 19:26:16 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:56:30 +0300
commit2574479255d234b9f8722bcac442a9030d0e92fe (patch)
tree679dca80c996dfb6964075219045f31ed5166a71 /qt
parent4a2c4cfddeb2a2c10a7a1013a8c87175c079b6eb (diff)
[omim] [editor] Added MapObject::GetCuisines method. Renamed old GetCuisines to GetLocalizedCuisines.
Diffstat (limited to 'qt')
-rw-r--r--qt/editor_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/editor_dialog.cpp b/qt/editor_dialog.cpp
index 955812c1cc..07edc22fed 100644
--- a/qt/editor_dialog.cpp
+++ b/qt/editor_dialog.cpp
@@ -131,7 +131,7 @@ EditorDialog::EditorDialog(QWidget * parent, osm::EditableMapObject & emo)
grid->addWidget(cmb, row++, 1);
}
continue;
- case osm::Props::Cuisine: v = strings::JoinStrings(emo.GetCuisines(), ", "); break;
+ case osm::Props::Cuisine: v = strings::JoinStrings(emo.GetLocalizedCuisines(), ", "); break;
case osm::Props::OpeningHours: v = emo.GetOpeningHours(); break;
case osm::Props::Stars: v = strings::to_string(emo.GetStars()); break;
case osm::Props::Operator: v = emo.GetOperator(); break;