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:
authorAlex Zolotarev <deathbaba@gmail.com>2011-05-23 19:36:45 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:17:52 +0300
commitd6389417b03a3d992054c309e4b56a8d580dab1c (patch)
tree121a14083e9e2ab1c09864fd2cbb3fe3a13d005d /indexer/drawing_rules.cpp
parentaca0b79b0d2aff4ea502285f0f982b2130b96ac8 (diff)
Refactored base/string_utils
Diffstat (limited to 'indexer/drawing_rules.cpp')
-rw-r--r--indexer/drawing_rules.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/drawing_rules.cpp b/indexer/drawing_rules.cpp
index 83e241fc39..ac2b9f709b 100644
--- a/indexer/drawing_rules.cpp
+++ b/indexer/drawing_rules.cpp
@@ -213,7 +213,7 @@ namespace drule {
template <> dash_array_t get_value<dash_array_t>(string const & s)
{
dash_array_t ret;
- strings::TokenizeString(s, " \tpx,", bind(&dash_array_t::add, ref(ret), _1));
+ strings::Tokenize(s, " \tpx,", bind(&dash_array_t::add, ref(ret), _1));
/// @see http://www.w3.org/TR/SVG/painting.html stroke-dasharray
size_t const count = ret.m_v.size();
@@ -866,7 +866,7 @@ Key RulesHolder::CreateRuleImpl1(string const & name,
#endif
attrs_map_t a;
- strings::TokenizeString(clValue, " \t", bind(&RulesHolder::PushAttributes, this, _1, ref(a)));
+ strings::Tokenize(clValue, " \t", bind(&RulesHolder::PushAttributes, this, _1, ref(a)));
for (attrs_map_t::const_iterator i = attrs.begin(); i != attrs.end(); ++i)
if (!strings::IsInArray(arrClassTags, i->first))