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:
authorDarafei Praliaskouski <komzpa@gmail.com>2013-10-24 16:50:16 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:03:55 +0300
commit430881c87706317b33a56d60dfbf0aa30c94d812 (patch)
tree6bffff31efe08a311cdefb233ab4db303231429b /indexer/classificator.cpp
parentf10aa2a91309a9fa50d04cbb2f549d19d17ed260 (diff)
[graphics] dropped circle element from styles
Diffstat (limited to 'indexer/classificator.cpp')
-rw-r--r--indexer/classificator.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp
index 01efd1174c..0385c160d6 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -242,9 +242,9 @@ namespace
void add_rule(int ft, iter_t i)
{
static const int visible[3][drule::count_of_rules] = {
- { 0, 0, 1, 1, 1, 0, 0 }, // fpoint
- { 1, 0, 0, 0, 0, 1, 0 }, // fline
- { 1, 1, 1, 1, 1, 0, 0 } // farea
+ { 0, 0, 1, 1, 0, 0 }, // fpoint
+ { 1, 0, 0, 0, 1, 0 }, // fline
+ { 1, 1, 1, 1, 0, 0 } // farea
};
if (visible[ft][i->m_type] == 1)
@@ -301,9 +301,9 @@ bool ClassifObject::IsDrawableLike(FeatureGeoType ft) const
ASSERT ( ft <= FEATURE_TYPE_AREA, () );
static const int visible[3][drule::count_of_rules] = {
- {0, 0, 1, 1, 1, 0, 0}, // fpoint
- {1, 0, 0, 0, 0, 1, 0}, // fline
- {0, 1, 0, 0, 0, 0, 0} // farea (!!! key difference with GetSuitable !!!)
+ {0, 0, 1, 1, 0, 0}, // fpoint
+ {1, 0, 0, 0, 1, 0}, // fline
+ {0, 1, 0, 0, 0, 0} // farea (!!! key difference with GetSuitable !!!)
};
for (size_t i = 0; i < m_drawRule.size(); ++i)