diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2008-01-14 13:50:27 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2008-01-14 13:50:27 +0000 |
commit | cd26b413364996b4204e206cd2621ce150bff0eb (patch) | |
tree | 7bd61c293d12e0b05cf6c8f8f7e844a1776cb02b /extensions/source/plugin/base/manager.cxx | |
parent | d8d776261529bccc1f25f9c2e786fba6d33aacb7 (diff) |
INTEGRATION: CWS wae4extensions (1.8.192); FILE MERGED
2007/09/27 10:20:01 fs 1.8.192.1: #i81612# warning-free code
Diffstat (limited to 'extensions/source/plugin/base/manager.cxx')
-rw-r--r-- | extensions/source/plugin/base/manager.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/plugin/base/manager.cxx b/extensions/source/plugin/base/manager.cxx index 2a385ecfe..bc0abc6e0 100644 --- a/extensions/source/plugin/base/manager.cxx +++ b/extensions/source/plugin/base/manager.cxx @@ -4,9 +4,9 @@ * * $RCSfile: manager.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: obo $ $Date: 2006-09-16 13:07:39 $ + * last change: $Author: ihi $ $Date: 2008-01-14 14:50:27 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -104,9 +104,9 @@ const Sequence< ::rtl::OUString >& PluginManager::getAdditionalSearchPaths() String aPluginPath( aOptions.GetPluginPath() ); if( aPluginPath.Len() ) { - int nPaths = aPluginPath.GetTokenCount( ';' ); + USHORT nPaths = aPluginPath.GetTokenCount( ';' ); aPaths.realloc( nPaths ); - for( int i = 0; i < nPaths; i++ ) + for( USHORT i = 0; i < nPaths; i++ ) aPaths.getArray()[i] = aPluginPath.GetToken( i, ';' ); } } |