summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-12-22 13:50:28 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-12-22 18:30:33 +0100
commit72ff89f147340795fae439c6b9274e67e286c5b6 (patch)
treeeff462643feb187701d36524a935a948adea0110 /vcl
parent6156a419a2d3f09d91afd00f84c84ba717442f43 (diff)
loplugin:loopvartoosmall
Change-Id: Ia9ae40b6286801c7cbdab6856d57e0ddd37aba87 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108161 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/quartz/utils.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/utils.cxx b/vcl/quartz/utils.cxx
index 0182ec118886..b07e68f74642 100644
--- a/vcl/quartz/utils.cxx
+++ b/vcl/quartz/utils.cxx
@@ -89,7 +89,7 @@ OUString NSStringArrayToOUString(NSArray* array)
{
OUString result = "[";
OUString sep;
- for (unsigned i = 0; i < [array count]; i++)
+ for (NSUInteger i = 0; i < [array count]; i++)
{
result = result + sep + OUString::fromUtf8([[array objectAtIndex:i] UTF8String]);
sep = ",";