diff --git a/drape_frontend/apply_feature_functors.cpp b/drape_frontend/apply_feature_functors.cpp index 801b47e0ee..10ea767195 100644 --- a/drape_frontend/apply_feature_functors.cpp +++ b/drape_frontend/apply_feature_functors.cpp @@ -464,9 +464,8 @@ void ApplyPointFeature::ProcessPointRule(Stylist::TRuleWrapper const & rule) m_symbolRule = symRule; } - bool const isNode = (rule.m_rule->GetType() & drule::node) != 0; CaptionDefProto const * capRule = rule.m_rule->GetCaption(0); - if (capRule && isNode) + if (capRule) { TextViewParams params; params.m_tileCenter = m_tileRect.Center(); @@ -924,10 +923,6 @@ void ApplyLineFeatureAdditional::ProcessLineRule(Stylist::TRuleWrapper const & r if (pShieldRule != nullptr) m_shieldRule = pShieldRule; - bool const isWay = (rule.m_rule->GetType() & drule::way) != 0; - if (!isWay) - return; - CaptionDefProto const * pCaptionRule = rule.m_rule->GetCaption(0); if (pCaptionRule != nullptr && pCaptionRule->height() > 2 && !m_captions.GetMainText().empty()) m_captionRule = pCaptionRule; diff --git a/indexer/drawing_rule_def.hpp b/indexer/drawing_rule_def.hpp index 6f34e25a57..e478403e42 100644 --- a/indexer/drawing_rule_def.hpp +++ b/indexer/drawing_rule_def.hpp @@ -28,9 +28,6 @@ namespace drule /// drawing type of rule - can be one of ... enum rule_type_t { line, area, symbol, caption, circle, pathtext, waymarker, shield, count_of_rules }; - /// geo type of rule - can be one combined of ... - enum rule_geo_t { node = 1, way = 2 }; - /// text field type - can be one of ... enum text_type_t { text_type_name = 0, text_type_housename, text_type_housenumber }; diff --git a/indexer/drawing_rules.cpp b/indexer/drawing_rules.cpp index b9fb8eb180..54ebfc4d13 100644 --- a/indexer/drawing_rules.cpp +++ b/indexer/drawing_rules.cpp @@ -35,9 +35,6 @@ namespace } } // namespace -BaseRule::BaseRule() : m_type(node | way) -{} - void BaseRule::CheckCacheSize(size_t s) { m_id1.resize(s); @@ -241,10 +238,7 @@ namespace { SymbolRuleProto m_symbol; public: - explicit Symbol(SymbolRuleProto const & r) : m_symbol(r) - { - SetType(r.apply_for_type()); - } + explicit Symbol(SymbolRuleProto const & r) : m_symbol(r) {} virtual SymbolRuleProto const * GetSymbol() const { return &m_symbol; } }; diff --git a/indexer/drawing_rules.hpp b/indexer/drawing_rules.hpp index 0628c7a380..59a0f26ae8 100644 --- a/indexer/drawing_rules.hpp +++ b/indexer/drawing_rules.hpp @@ -31,14 +31,13 @@ namespace drule class BaseRule { mutable buffer_vector m_id1; - char m_type; // obsolete for new styles, can be removed std::unique_ptr m_selector; public: static uint32_t const empty_id = 0xFFFFFFFF; - BaseRule(); + BaseRule() = default; virtual ~BaseRule() = default; void CheckCacheSize(size_t s); @@ -49,9 +48,6 @@ namespace drule void MakeEmptyID(size_t threadSlot); void MakeEmptyID(); - void SetType(char type) { m_type = type; } - inline char GetType() const { return m_type; } - virtual LineDefProto const * GetLine() const; virtual AreaRuleProto const * GetArea() const; virtual SymbolRuleProto const * GetSymbol() const;