summaryrefslogtreecommitdiffstats
path: root/svx/source/sidebar/shapes/DefaultShapesPanel.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-07-08 23:23:27 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-07-08 23:23:27 +0200
commitc7fc9c87622e99316e2c17fe6bdc7f3a04f71fbd (patch)
tree67eb7e50a4c984ecd4432348d538f6f205559db7 /svx/source/sidebar/shapes/DefaultShapesPanel.cxx
parentloplugin:staticmethods (diff)
downloadcore-c7fc9c87622e99316e2c17fe6bdc7f3a04f71fbd.tar.gz
core-c7fc9c87622e99316e2c17fe6bdc7f3a04f71fbd.zip
loplugin:loopvartoosmall
Change-Id: I43bf298321c905514602e3c73d2d6a719e8d81cc
Diffstat (limited to 'svx/source/sidebar/shapes/DefaultShapesPanel.cxx')
-rw-r--r--svx/source/sidebar/shapes/DefaultShapesPanel.cxx4
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: */