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:
authorMikhail Gorbushin <m.gorbushin@corp.mail.ru>2018-08-28 16:21:42 +0300
committerTatiana Yan <tatiana.kondakova@gmail.com>2018-08-28 16:36:02 +0300
commit3458396c2667634f98aeab831b97ea024a947405 (patch)
tree0767594f202b8e0da8895ecb31714e25b2e35c78 /qt
parent514423cabd26dc8170c2609deabebb7629dd969c (diff)
add comma in widget for desktop
Diffstat (limited to 'qt')
-rw-r--r--qt/place_page_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/place_page_dialog.cpp b/qt/place_page_dialog.cpp
index fa56df0530..fea804a05f 100644
--- a/qt/place_page_dialog.cpp
+++ b/qt/place_page_dialog.cpp
@@ -29,7 +29,7 @@ PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info
grid->addWidget(new QLabel("lat lon"), row, 0);
ms::LatLon const ll = info.GetLatLon();
string const llstr =
- strings::to_string_dac(ll.lat, 7) + " " + strings::to_string_dac(ll.lon, 7);
+ strings::to_string_dac(ll.lat, 7) + ", " + strings::to_string_dac(ll.lon, 7);
QLabel * label = new QLabel(llstr.c_str());
label->setTextInteractionFlags(Qt::TextSelectableByMouse);
grid->addWidget(label, row++, 1);