diff options
author | siddheshpatil777 <siddheshpatil777@gmail.com> | 2021-01-06 14:14:33 +0400 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2021-01-21 16:36:00 +0100 |
commit | 5419b894a2e791de24d10f0c4433a807e175e7a0 (patch) | |
tree | 72cdf2b9648a18d711c53bb0d36ffb550ec0850d /editeng | |
parent | 21138573fcc6e300a446ffba8cfde00198fb249e (diff) |
tdf#114441: Convert use of sal_uLong to better integer types
Change-Id: I14742675541a315e72191df4ee38c35373b39d52
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108842
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/outliner/outlin2.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/outliner/outlin2.cxx b/editeng/source/outliner/outlin2.cxx index ff3d1583a5f1..df2e50389d3f 100644 --- a/editeng/source/outliner/outlin2.cxx +++ b/editeng/source/outliner/outlin2.cxx @@ -313,7 +313,7 @@ bool Outliner::IsInUndo() const return pEditEngine->IsInUndo(); } -sal_uLong Outliner::GetLineCount( sal_Int32 nParagraph ) const +sal_uInt32 Outliner::GetLineCount( sal_Int32 nParagraph ) const { return pEditEngine->GetLineCount( nParagraph ); } @@ -323,7 +323,7 @@ sal_Int32 Outliner::GetLineLen( sal_Int32 nParagraph, sal_Int32 nLine ) const return pEditEngine->GetLineLen( nParagraph, nLine ); } -sal_uLong Outliner::GetLineHeight( sal_Int32 nParagraph ) +sal_uInt32 Outliner::GetLineHeight( sal_Int32 nParagraph ) { return pEditEngine->GetLineHeight( nParagraph ); } |