diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-28 13:20:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-05 13:18:14 +0200 |
commit | 3d65dfa3c98e0f79c579cfac23d55092f7554244 (patch) | |
tree | 492c438c7af8dc56240add22d259945b67ea130a /cui | |
parent | 9802db7ff181a9c4d15cc453725b63b82a941fff (diff) |
convert xub_StrLen to sal_Int32
Converts code that calls comphelper::string::getTokenCount() to
use sal_Int32 to store the return value.
Change-Id: I439605a39d29b1309649e30f3ff40dfa412efcde
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optjava.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx index e1dca0dd95bf..86791543133e 100644 --- a/cui/source/options/optjava.cxx +++ b/cui/source/options/optjava.cxx @@ -1074,7 +1074,7 @@ void SvxJavaClassPathDlg::SetClassPath( const OUString& _rPath ) m_pPathList->Clear(); xub_StrLen i; sal_Int32 nIdx = 0; - xub_StrLen nCount = comphelper::string::getTokenCount(_rPath, CLASSPATH_DELIMITER); + sal_Int32 nCount = comphelper::string::getTokenCount(_rPath, CLASSPATH_DELIMITER); for ( i = 0; i < nCount; ++i ) { OUString sToken = _rPath.getToken( 0, CLASSPATH_DELIMITER, nIdx ); |