diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-08-30 09:39:23 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-09-12 14:18:48 +0200 |
commit | f845cda89f6b79135f360611d1900d345f897f90 (patch) | |
tree | 9765237309ae3c5f9e564c5f34bfbf3ceec9f7a0 /svtools | |
parent | 815126b685efdb117fa02f2627414bfbd07d0e5b (diff) |
fix downcast by intermediate function
Change-Id: I8e7909003249a3f86928197bbde29231f84b01c2
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/edit/svmedit2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/edit/svmedit2.cxx b/svtools/source/edit/svmedit2.cxx index 65f2c0c19561..533a6f7ee394 100644 --- a/svtools/source/edit/svmedit2.cxx +++ b/svtools/source/edit/svmedit2.cxx @@ -36,7 +36,7 @@ void ExtMultiLineEdit::SetAutoScroll( bool bAutoScroll ) GetTextView()->SetAutoScroll( bAutoScroll ); } -void ExtMultiLineEdit::SetAttrib( const TextAttrib& rAttr, sal_uLong nPara, sal_uInt16 nStart, sal_uInt16 nEnd ) +void ExtMultiLineEdit::SetAttrib( const TextAttrib& rAttr, sal_uInt32 nPara, sal_Int32 nStart, sal_Int32 nEnd ) { GetTextEngine()->SetAttrib( rAttr, nPara, nStart, nEnd ); } |