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:
authorvng <viktor.govako@gmail.com>2011-11-17 00:22:45 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:28:13 +0300
commite8975ebcbf8e34d1bd71cce114bd035a7d51d183 (patch)
treee8d42b0b9730c2c96e3ab974ec0840579a087804 /indexer/classificator.cpp
parent43738118867defa5d28243853c5677b789fa08d5 (diff)
Add PathTextRuleProto for text-by-line.
Regenerate proto drawing rules. Take into account correct rule color for text-by-line drawing.
Diffstat (limited to 'indexer/classificator.cpp')
-rw-r--r--indexer/classificator.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp
index e40345cdb5..b7ff913e43 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -292,11 +292,7 @@ namespace
{
static const int visible[3][drule::count_of_rules] = {
{0, 0, 1, 1, 1, 0, 0}, // fpoint
- #ifdef USE_PROTO_STYLES
- {1, 0, 0, 1, 0, 0, 0}, // fline
- #else
{1, 0, 0, 0, 0, 1, 0}, // fline
- #endif
{1, 1, 1, 1, 0, 0, 0} // farea
};
@@ -416,11 +412,7 @@ bool ClassifObject::IsDrawableLike(FeatureGeoType ft) const
static const int visible[3][drule::count_of_rules] = {
{0, 0, 1, 1, 1, 0, 0}, // fpoint
- #ifdef USE_PROTO_STYLES
- {1, 0, 0, 1, 0, 0, 0}, // fline
- #else
{1, 0, 0, 0, 0, 1, 0}, // fline
- #endif
{0, 1, 0, 0, 0, 0, 0} // farea (!!! key difference with GetSuitable !!!)
};