codemaker/source/codemaker/global.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 900ba7d24e1bfa7e9a2abcb7cb410261f680155a Author: Stephan Bergmann <sberg...@redhat.com> AuthorDate: Thu Oct 14 09:24:27 2021 +0200 Commit: Stephan Bergmann <sberg...@redhat.com> CommitDate: Thu Oct 14 10:42:31 2021 +0200 Use more appropriate type for OString-length related variable Change-Id: I7a2925116928e16381c95b59a45200fa5f05935e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123575 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sberg...@redhat.com> diff --git a/codemaker/source/codemaker/global.cxx b/codemaker/source/codemaker/global.cxx index 1b2b11db0f7e..6d831b45dca8 100644 --- a/codemaker/source/codemaker/global.cxx +++ b/codemaker/source/codemaker/global.cxx @@ -67,7 +67,7 @@ OString createFileNameFromType( const OString& destination, { OString type(typeName.replace('.', '/')); - sal_uInt32 length = destination.getLength(); + sal_Int32 length = destination.getLength(); bool bWithPoint = false; if (length == 0)