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:
authorExMix <rahuba.youri@mapswithme.com>2014-01-28 15:21:57 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:10:42 +0300
commitd9d52789c11a65637a084316ff9e8f720a42665e (patch)
tree4ceebf54143660b4cb7c92703194f83ef6adfb17 /drape_frontend/stylist.cpp
parent38f864ee3b37db2a5163a52b35111e8de3f707f2 (diff)
[drape] review fixes
Diffstat (limited to 'drape_frontend/stylist.cpp')
-rw-r--r--drape_frontend/stylist.cpp21
1 files changed, 10 insertions, 11 deletions
diff --git a/drape_frontend/stylist.cpp b/drape_frontend/stylist.cpp
index 34153ef21f..8d2b855e65 100644
--- a/drape_frontend/stylist.cpp
+++ b/drape_frontend/stylist.cpp
@@ -36,7 +36,6 @@ namespace df
default:
return drule::count_of_rules;
}
-
}
// ==================================== //
@@ -180,18 +179,16 @@ namespace df
feature::EGeomType type,
bool auxCaptionExists)
{
- if (auxCaptionExists == false &&
- m_auxText.empty() == false &&
- type != feature::GEOM_LINE)
+ if (!auxCaptionExists && !m_auxText.empty() && type != feature::GEOM_LINE)
{
f.GetReadableName(m_mainText);
if (m_mainText == m_auxText)
m_auxText.clear();
}
- if (m_houseNumber.empty() == false)
+ if (!m_houseNumber.empty())
{
- if (m_mainText.empty() == true || m_houseNumber.find(m_mainText) != string::npos)
+ if (m_mainText.empty() || m_houseNumber.find(m_mainText) != string::npos)
m_houseNumber.swap(m_mainText);
else
m_mainText += ("(" + m_houseNumber + ")");
@@ -225,8 +222,7 @@ namespace df
void CaptionDescription::SwapCaptions(const int zoomLevel)
{
- if (zoomLevel <= scales::GetUpperWorldScale() &&
- m_auxText.empty() == false)
+ if (zoomLevel <= scales::GetUpperWorldScale() && !m_auxText.empty())
{
m_mainText.swap(m_auxText);
m_auxText.clear();
@@ -322,11 +318,14 @@ namespace df
feature::EGeomType mainGeomType = feature::EGeomType(geomType.first);
switch (mainGeomType) {
- case feature::GEOM_POINT: s.RaisePointStyleFlag();
+ case feature::GEOM_POINT:
+ s.RaisePointStyleFlag();
break;
- case feature::GEOM_LINE : s.RaiseLineStyleFlag();
+ case feature::GEOM_LINE :
+ s.RaiseLineStyleFlag();
break;
- case feature::GEOM_AREA : s.RaiseAreaStyleFlag();
+ case feature::GEOM_AREA :
+ s.RaiseAreaStyleFlag();
break;
default:
ASSERT(false, ());