Kaydet (Commit) 499f6f49 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:loopvartoosmall

Change-Id: Idc7b602d27a3198b222f5c9b6dc21b18d101bd45
üst 000263f7
......@@ -90,7 +90,7 @@ void SvxPresetListBox::FillPresetListBox(XHatchList& pList, sal_uInt32 nStartInd
{
const Size aSize(100,60);
BitmapEx aBitmap;
for(sal_Int32 nIndex = 0; nIndex < pList.Count(); nIndex++, nStartIndex++)
for(long nIndex = 0; nIndex < pList.Count(); nIndex++, nStartIndex++)
{
aBitmap = pList.GetBitmapForPreview(nIndex, aSize);
InsertItem(nStartIndex, Image(aBitmap), pList.GetHatch( nIndex )->GetName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment