basctl/source/basicide/BasicColorConfig.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit c67f138ed80e1e50638901a6b6e16946b4bcd92d Author: seturaj <seturajmatr...@gmail.com> AuthorDate: Thu Feb 1 02:46:25 2024 -0500 Commit: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> CommitDate: Fri Feb 16 10:51:13 2024 +0100 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.lauhakan...@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> diff --git a/basctl/source/basicide/BasicColorConfig.cxx b/basctl/source/basicide/BasicColorConfig.cxx index ab17b164934b..433c55b531ac 100644 --- a/basctl/source/basicide/BasicColorConfig.cxx +++ b/basctl/source/basicide/BasicColorConfig.cxx @@ -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]; }