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:
authorSergey Yershov <yershov@corp.mail.ru>2016-04-20 13:07:07 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-04-20 13:07:07 +0300
commitb34673c408781c551e67e84d54f7bd4fd2e8ae5e (patch)
tree51f0f1b10714a7a94b8612cc24805df46b9b93f9 /qt
parent911148145667bc907380ba3482b0c2036708866c (diff)
[desktop] Add showing countryId in place page
Diffstat (limited to 'qt')
-rw-r--r--qt/place_page_dialog.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/qt/place_page_dialog.cpp b/qt/place_page_dialog.cpp
index fdd886f5ea..4162fb4a54 100644
--- a/qt/place_page_dialog.cpp
+++ b/qt/place_page_dialog.cpp
@@ -34,6 +34,12 @@ PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info
label->setTextInteractionFlags(Qt::TextSelectableByMouse);
grid->addWidget(label, row++, 1);
}
+ {
+ grid->addWidget(new QLabel("CountryId"), row, 0);
+ QLabel * label = new QLabel(QString::fromStdString(info.m_countryId));
+ label->setTextInteractionFlags(Qt::TextSelectableByMouse);
+ grid->addWidget(label, row++, 1);
+ }
// Title/Name/Custom Name.
if (!info.GetTitle().empty())
{