tdf#114441 : sal_uLong to better integer types
Change-Id: I7c9df411775812cfea4a41e84d34782cc5a9578e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162424 Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
This commit is contained in:
parent
eebdda4e22
commit
c67f138ed8
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ ColorScheme BasicColorConfig::GetColorScheme(const OUString& rScheme)
|
|||
|
||||
css::uno::Sequence<OUString> aPropNames(aVecPropNames.size());
|
||||
OUString* pPropNames = aPropNames.getArray();
|
||||
for (sal_uLong i = 0; i < aVecPropNames.size(); i++)
|
||||
for (size_t i = 0; i < aVecPropNames.size(); i++)
|
||||
{
|
||||
pPropNames[i] = aVecPropNames[i];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue