diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-08 23:23:27 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-08 23:23:27 +0200 |
commit | c7fc9c87622e99316e2c17fe6bdc7f3a04f71fbd (patch) | |
tree | 67eb7e50a4c984ecd4432348d538f6f205559db7 /svx | |
parent | 22663a12c35753977253699fbc61441acdce27ec (diff) |
loplugin:loopvartoosmall
Change-Id: I43bf298321c905514602e3c73d2d6a719e8d81cc
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/sidebar/shapes/DefaultShapesPanel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/sidebar/shapes/DefaultShapesPanel.cxx b/svx/source/sidebar/shapes/DefaultShapesPanel.cxx index 66f1189ab48b..36052869a74a 100644 --- a/svx/source/sidebar/shapes/DefaultShapesPanel.cxx +++ b/svx/source/sidebar/shapes/DefaultShapesPanel.cxx @@ -126,7 +126,7 @@ void DefaultShapesPanel::populateShapes() for(auto& aSet : mpShapesSetMap) { aSet.first->SetColCount(6); - for(sal_uInt16 i = 0; i < aSet.second.size(); i++) + for(std::map<sal_uInt16, rtl::OUString>::size_type i = 0; i < aSet.second.size(); i++) { sSlotStr = aSet.second[i]; aSlotImage = ::GetImage(mxFrame, sSlotStr, false); @@ -138,4 +138,4 @@ void DefaultShapesPanel::populateShapes() } } // end of namespace sd::sidebar -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
\ No newline at end of file +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |