vcl/quartz/utils.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 73e279b28e0bfb63ade18a9be36ae2d0368edf59 Author: Stephan Bergmann <[email protected]> AuthorDate: Tue Dec 2 13:52:45 2025 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Dec 3 00:07:03 2025 +0100 loplugin:stringplusequal Change-Id: Iee80a8d297843b9230b94cd41638784156451166 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194924 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/vcl/quartz/utils.cxx b/vcl/quartz/utils.cxx index b07e68f74642..199d5ef488d7 100644 --- a/vcl/quartz/utils.cxx +++ b/vcl/quartz/utils.cxx @@ -94,7 +94,7 @@ OUString NSStringArrayToOUString(NSArray* array) result = result + sep + OUString::fromUtf8([[array objectAtIndex:i] UTF8String]); sep = ","; } - result = result + "]"; + result += "]"; return result; } @@ -107,7 +107,7 @@ OUString NSDictionaryKeysToOUString(NSDictionary* dict) result = result + sep + OUString::fromUtf8([key UTF8String]); sep = ","; } - result = result + "}"; + result += "}"; return result; }
