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
diff options
context:
space:
mode:
authorYury Melnichek <melnichek@gmail.com>2012-10-05 19:46:39 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:44:54 +0300
commit74695aab561386af004575b22890c4ca4f5257ad (patch)
treefe310e302fc8775419abb4f34072811c30dda1c5 /map/ruler.cpp
parenta99ee7c34b0dd6718caefa41b61e09a4eac3436d (diff)
Ruler: spaces after '>' and '<'.
Diffstat (limited to 'map/ruler.cpp')
-rw-r--r--map/ruler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/ruler.cpp b/map/ruler.cpp
index ecb2ae8332..4130e96c06 100644
--- a/map/ruler.cpp
+++ b/map/ruler.cpp
@@ -136,12 +136,12 @@ void Ruler::CalcMetresDiff(double v)
if (arrU[0].m_i > v)
{
- m_scalerText = string("<") + arrU[0].m_s;
+ m_scalerText = string("< ") + arrU[0].m_s;
m_metresDiff = m_minUnitsWidth - 1;
}
else if (arrU[count-1].m_i <= v)
{
- m_scalerText = string(">") + arrU[count-1].m_s;
+ m_scalerText = string("> ") + arrU[count-1].m_s;
m_metresDiff = m_maxUnitsWidth + 1;
}
else