diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-05-02 18:24:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-05-02 20:46:08 +0200 |
commit | f52d165c887076d6f6ccf928c2be585cfc06058a (patch) | |
tree | be2e256252885a120f5ac78e149e51214c56ebc3 /include/editeng | |
parent | 6549aa9afa7f39b45a0d402d83f4975f37bcc2fb (diff) |
sal_uLong->sal_Int32 in TextHint
Change-Id: If8125e1343b74c2216fb8e9f9e1e16669062de14
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115004
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/unoedhlp.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/editeng/unoedhlp.hxx b/include/editeng/unoedhlp.hxx index 24a9105453da..5b70de35ca55 100644 --- a/include/editeng/unoedhlp.hxx +++ b/include/editeng/unoedhlp.hxx @@ -21,7 +21,6 @@ #define INCLUDED_EDITENG_UNOEDHLP_HXX #include <memory> -#include <tools/solar.h> #include <vcl/textdata.hxx> #include <svl/hint.hxx> #include <tools/gen.hxx> @@ -43,7 +42,7 @@ private: public: SvxEditSourceHint( SfxHintId nId ); - SvxEditSourceHint( SfxHintId nId, sal_uLong nValue, sal_Int32 nStart, sal_Int32 nEnd ); + SvxEditSourceHint( SfxHintId nId, sal_Int32 nValue, sal_Int32 nStart, sal_Int32 nEnd ); using TextHint::GetValue; sal_Int32 GetStartValue() const { return mnStart;} |