diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-02 22:57:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-02 22:57:44 +0200 |
commit | 1d25c7102137a4b7eda069fe9dc0d7ba13604ac2 (patch) | |
tree | b10d3830cff998949711cb7c98943eddc7be1eb3 /fpicker/source/aqua/SalAquaFilePicker.mm | |
parent | 8b9be6fd5ffcc37363efb4228dec9126a8e179a6 (diff) |
loplugin:loopvartoosmall
Change-Id: Icdaba21efeb8a910617642b7cb4e082f03f7a0ef
Diffstat (limited to 'fpicker/source/aqua/SalAquaFilePicker.mm')
-rw-r--r-- | fpicker/source/aqua/SalAquaFilePicker.mm | 2 |
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]; |