summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-07-19 09:25:52 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-07-19 10:22:56 +0200
commit7606a0652cd4adfdfc464ac0595158f6ec193212 (patch)
tree8081f1614e34b6201ada7bcb2aa6420cd84630eb /cui
parent94d35d1cc5bea93b87aea86459ce5e8f1686600c (diff)
Use more appropriate index variable type
Change-Id: I85d2dec9f5dc8fd09c7efa33f7c8518b7fabd4b3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137216 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optlingu.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx
index 8f6d6a70b901..331cc2cabf83 100644
--- a/cui/source/options/optlingu.cxx
+++ b/cui/source/options/optlingu.cxx
@@ -420,7 +420,7 @@ Sequence< OUString > SvxLinguData_Impl::GetSortedImplNames( LanguageType nLang,
OUString *pRes = aRes.getArray();
// add not configured services
- for (sal_Int32 i = 0; i < static_cast<sal_Int32>(nDisplayServices); ++i)
+ for (sal_uInt32 i = 0; i < nDisplayServices; ++i)
{
const ServiceInfo_Impl &rInfo = aDisplayServiceArr[ i ];
OUString aImplName;