summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorsiddheshpatil777 <siddheshpatil777@gmail.com>2021-01-06 14:14:33 +0400
committerMichael Stahl <michael.stahl@allotropia.de>2021-01-21 16:36:00 +0100
commit5419b894a2e791de24d10f0c4433a807e175e7a0 (patch)
tree72cdf2b9648a18d711c53bb0d36ffb550ec0850d /include
parent21138573fcc6e300a446ffba8cfde00198fb249e (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 'include')
-rw-r--r--include/editeng/outliner.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index cfcfe85191d6..c8a1736cd85a 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -855,9 +855,9 @@ public:
const Link<Outliner*,void>& GetEndMovingHdl() const {return aEndMovingHdl;}
void SetEndMovingHdl( const Link<Outliner*,void>& rLink){aEndMovingHdl=rLink;}
- sal_uLong GetLineCount( sal_Int32 nParagraph ) const;
+ sal_uInt32 GetLineCount( sal_Int32 nParagraph ) const;
sal_Int32 GetLineLen( sal_Int32 nParagraph, sal_Int32 nLine ) const;
- sal_uLong GetLineHeight( sal_Int32 nParagraph );
+ sal_uInt32 GetLineHeight( sal_Int32 nParagraph );
ErrCode Read( SvStream& rInput, const OUString& rBaseURL, EETextFormat, SvKeyValueIterator* pHTTPHeaderAttrs = nullptr );