summaryrefslogtreecommitdiffstats
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-02 22:57:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-02 22:57:44 +0200
commit1d25c7102137a4b7eda069fe9dc0d7ba13604ac2 (patch)
treeb10d3830cff998949711cb7c98943eddc7be1eb3 /fpicker
parentloplugin:loopvartoosmall (diff)
downloadcore-1d25c7102137a4b7eda069fe9dc0d7ba13604ac2.tar.gz
core-1d25c7102137a4b7eda069fe9dc0d7ba13604ac2.zip
loplugin:loopvartoosmall
Change-Id: Icdaba21efeb8a910617642b7cb4e082f03f7a0ef
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/aqua/SalAquaFilePicker.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/aqua/SalAquaFilePicker.mm b/fpicker/source/aqua/SalAquaFilePicker.mm
index a760f84158ca..97bc5ede766a 100644
--- a/fpicker/source/aqua/SalAquaFilePicker.mm
+++ b/fpicker/source/aqua/SalAquaFilePicker.mm
@@ -337,7 +337,7 @@ uno::Sequence<rtl::OUString> SAL_CALL SalAquaFilePicker::getFiles() throw( uno::
uno::Sequence< rtl::OUString > aSelectedFiles(nFiles > 1 ? nFiles + 1 : nFiles);
- for(int nIndex = 0; nIndex < nFiles; nIndex += 1)
+ for(long nIndex = 0; nIndex < nFiles; nIndex += 1)
{
NSURL *url = [files objectAtIndex:nIndex];