From c67f138ed80e1e50638901a6b6e16946b4bcd92d Mon Sep 17 00:00:00 2001 From: seturaj Date: Thu, 1 Feb 2024 02:46:25 -0500 Subject: [PATCH] tdf#114441 : sal_uLong to better integer types Change-Id: I7c9df411775812cfea4a41e84d34782cc5a9578e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162424 Tested-by: Ilmari Lauhakangas Reviewed-by: Ilmari Lauhakangas --- basctl/source/basicide/BasicColorConfig.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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]; }