diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-29 11:45:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-12-03 11:34:45 +0200 |
commit | 4ded81770296b6eec9291924db53666f1d8e8d7e (patch) | |
tree | c09bce1ba48bef1e0996895becea4b2ead5046da /extensions | |
parent | 9083e8d1ca0246ba21423726d568846cb89efae9 (diff) |
convert Edit::GetCharPos from xub_StrLen to sal_Int32
Change-Id: I8fe982d0c0c0a04e2a10cff0f0ae68d51bed590a
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/standardcontrol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx index 06bf36dea221..064271a670ac 100644 --- a/extensions/source/propctrlr/standardcontrol.cxx +++ b/extensions/source/propctrlr/standardcontrol.cxx @@ -384,7 +384,7 @@ namespace pcr //-------------------------------------------------------------------- bool HyperlinkInput::impl_textHitTest( const ::Point& _rWindowPos ) { - xub_StrLen nPos = GetCharPos( _rWindowPos ); + sal_Int32 nPos = GetCharPos( _rWindowPos ); return ( ( nPos != STRING_LEN ) && ( nPos < GetText().getLength() ) ); } |