summaryrefslogtreecommitdiff
path: root/svgio/source
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/source')
-rw-r--r--svgio/source/svgreader/svgtoken.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svgio/source/svgreader/svgtoken.cxx b/svgio/source/svgreader/svgtoken.cxx
index 4416d32c1de9..6215cc0c6db5 100644
--- a/svgio/source/svgreader/svgtoken.cxx
+++ b/svgio/source/svgreader/svgtoken.cxx
@@ -324,12 +324,12 @@ namespace svgio
if(aCaseLindependentSVGTokenMapperList.empty())
{
- for(SVGTokenMapper::const_iterator aCurrent(aSVGTokenMapperList.begin()); aCurrent != aSVGTokenMapperList.end(); ++aCurrent)
+ for(const auto& rCurrent : aSVGTokenMapperList)
{
aCaseLindependentSVGTokenMapperList.insert(
SVGTokenValueType(
- aCurrent->first.toAsciiLowerCase(),
- aCurrent->second));
+ rCurrent.first.toAsciiLowerCase(),
+ rCurrent.second));
}
}