diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-27 09:05:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-07-27 09:24:08 +0200 |
commit | a3c6ead658a6342f74425a7bd05b3a0b9d6265f5 (patch) | |
tree | ff3e999099509142c52bf6e07d96bac91595e67f /ucb | |
parent | 53b496daa8be70e29c71ed44b30c49a52677c14c (diff) |
loplugin:loopvartoosmall
Change-Id: I9114a7dd3eae7a76432655c4459a7326bb1908f4
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/webdavdatasupplier.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav/webdavdatasupplier.cxx b/ucb/source/ucp/webdav/webdavdatasupplier.cxx index 89f50cb1471d..3fa7d86949ed 100644 --- a/ucb/source/ucp/webdav/webdavdatasupplier.cxx +++ b/ucb/source/ucp/webdav/webdavdatasupplier.cxx @@ -394,7 +394,7 @@ bool DataSupplier::getData() aPath = SerfUri::unescape( aPath ); bool bFoundParent = false; - for ( sal_uInt32 n = 0; n < resources.size(); ++n ) + for ( size_t n = 0; n < resources.size(); ++n ) { const DAVResource & rRes = resources[ n ]; |