diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-29 09:59:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-01 09:58:56 +0200 |
commit | 55bc128636596032c23ee855904822ad813986fc (patch) | |
tree | ba097deaf15579f0148a68679d915e3ba25d52c4 /svgio/source/svgreader/svgstylenode.cxx | |
parent | c9fd4aa8aa969ef2b669813acee15d6efcf1ecde (diff) |
loplugin:loopvartoosmall
Change-Id: I86ff38a90018a2ddfb2db3babf67168b0e6257a5
Diffstat (limited to 'svgio/source/svgreader/svgstylenode.cxx')
-rw-r--r-- | svgio/source/svgreader/svgstylenode.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/source/svgreader/svgstylenode.cxx b/svgio/source/svgreader/svgstylenode.cxx index ab9fa025ec25..42cc554a654e 100644 --- a/svgio/source/svgreader/svgstylenode.cxx +++ b/svgio/source/svgreader/svgstylenode.cxx @@ -117,7 +117,7 @@ namespace svgio OUString aConcatenatedSelector; // re-combine without spaces, create a unique name (for now) - for(sal_uInt32 a(0); a < aSelectorParts.size(); a++) + for(size_t a(0); a < aSelectorParts.size(); a++) { aConcatenatedSelector += aSelectorParts[a]; } |