diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-29 11:22:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-06 08:51:23 +0200 |
commit | e74f4232844666e74aa2b8383894931c9007188e (patch) | |
tree | cedf25de7b8df93a3d4f93a4428c9f6d63dc8322 /linguistic | |
parent | 48d4fa594e255d05f0be15bcb345f2cf6681962f (diff) |
convert linguistic::isUpper from xub_StrLen to sal_Int32
Change-Id: I7bf426e1753b3761c9ce8930ad637526a9895495
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/misc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linguistic/source/misc.cxx b/linguistic/source/misc.cxx index a590af82e484..c7d208d488c8 100644 --- a/linguistic/source/misc.cxx +++ b/linguistic/source/misc.cxx @@ -595,7 +595,7 @@ osl::Mutex & lcl_GetCharClassMutex() return aMutex; } -sal_Bool IsUpper( const OUString &rText, xub_StrLen nPos, xub_StrLen nLen, sal_Int16 nLanguage ) +sal_Bool IsUpper( const OUString &rText, sal_Int32 nPos, sal_Int32 nLen, sal_Int16 nLanguage ) { MutexGuard aGuard( lcl_GetCharClassMutex() ); |