summaryrefslogtreecommitdiff
path: root/svl/source/items/ilstitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/ilstitem.cxx')
-rw-r--r--svl/source/items/ilstitem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/ilstitem.cxx b/svl/source/items/ilstitem.cxx
index de869ae63416..140e3b857314 100644
--- a/svl/source/items/ilstitem.cxx
+++ b/svl/source/items/ilstitem.cxx
@@ -34,7 +34,7 @@ SfxIntegerListItem::SfxIntegerListItem( sal_uInt16 which, const ::std::vector <
: SfxPoolItem( which )
{
m_aList.realloc( rList.size() );
- for ( sal_uInt16 n=0; n<rList.size(); ++n )
+ for ( size_t n=0; n<rList.size(); ++n )
m_aList[n] = rList[n];
}