diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-01-07 16:27:32 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-01-07 21:04:35 +0100 |
commit | 2ad35f36db9195c01fe4ccb428f6d9626fa5060c (patch) | |
tree | 6e2d162101f9fd7f7ebf50a385859d8ff0ec4e2d /sw/source | |
parent | c257db1401e2b356306aa38e528c37ccb1073cea (diff) |
sal_uInt16 to size_t
Change-Id: I3ed2eb3b75cd2588366648331a8f9906cf5e3d7b
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/bastyp/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/bastyp/init.cxx b/sw/source/core/bastyp/init.cxx index 6d5454fd7436..dc3efadc708e 100644 --- a/sw/source/core/bastyp/init.cxx +++ b/sw/source/core/bastyp/init.cxx @@ -825,7 +825,7 @@ void _FinitCore() delete[] SwAttrPool::pVersionMap6; delete[] SwAttrPool::pVersionMap7; - for ( sal_uInt16 i = 0; i < pGlobalOLEExcludeList->size(); ++i ) + for ( size_t i = 0; i < pGlobalOLEExcludeList->size(); ++i ) delete (*pGlobalOLEExcludeList)[i]; delete pGlobalOLEExcludeList; } |