diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-28 16:48:15 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-29 08:48:41 +0200 |
commit | 49ea2258d482950ad3af16f9c8ac4fef7f192fc0 (patch) | |
tree | 4910b89f264f47c378fa7540705ca84f50d91919 /extensions/source/plugin | |
parent | e0b2e6e3f767240016133dd2d55e0bfb9192ca39 (diff) |
loplugin:loopvartoosmall
Change-Id: I5518e40a30bdad53470cc52b59eff04ab6d873d4
Diffstat (limited to 'extensions/source/plugin')
-rw-r--r-- | extensions/source/plugin/base/manager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/plugin/base/manager.cxx b/extensions/source/plugin/base/manager.cxx index 84d45719d4c6..c78cb0f928b0 100644 --- a/extensions/source/plugin/base/manager.cxx +++ b/extensions/source/plugin/base/manager.cxx @@ -90,7 +90,7 @@ const Sequence< OUString >& PluginManager::getAdditionalSearchPaths() { sal_Int32 nPaths = comphelper::string::getTokenCount(aPluginPath, ';'); aPaths.realloc( nPaths ); - for( sal_uInt16 i = 0; i < nPaths; i++ ) + for( sal_Int32 i = 0; i < nPaths; i++ ) aPaths.getArray()[i] = aPluginPath.getToken(i, ';'); } } |