summaryrefslogtreecommitdiff
path: root/sw/source/uibase/misc
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2015-05-29 23:34:09 +0200
committerKatarina Behrens <Katarina.Behrens@cib.de>2015-06-02 10:47:42 +0200
commit263b4b99856c81c12707a5e9823d693a594ee305 (patch)
tree5606e0b36e0a059a267fa4757f31e7e455b27d4e /sw/source/uibase/misc
parent20bb2e707481135440b2c905fb234c5ba54d5041 (diff)
loplugin: loopvartoosmall
Change-Id: Icb30dac9cdcba493752623ccafff5f06ccafc31f
Diffstat (limited to 'sw/source/uibase/misc')
-rw-r--r--sw/source/uibase/misc/numberingtypelistbox.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/misc/numberingtypelistbox.cxx b/sw/source/uibase/misc/numberingtypelistbox.cxx
index 52847602751f..7e76bc6b26fa 100644
--- a/sw/source/uibase/misc/numberingtypelistbox.cxx
+++ b/sw/source/uibase/misc/numberingtypelistbox.cxx
@@ -89,7 +89,7 @@ void SwNumberingTypeListBox::Reload(sal_uInt16 nTypeFlags)
}
SwOLENames aNames(SW_RES(STRRES_NUMTYPES));
ResStringArray& rNames = aNames.GetNames();
- for(sal_uInt16 i = 0; i < rNames.Count(); i++)
+ for(size_t i = 0; i < rNames.Count(); i++)
{
sal_IntPtr nValue = rNames.GetValue(i);
bool bInsert = true;