summaryrefslogtreecommitdiffstats
path: root/include/vcl/textrectinfo.hxx
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-10-19 15:12:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-19 21:34:46 +0200
commit3aef606f2758172a27718a06fea0ff9080e4d80f (patch)
treead323c90301d80bbb3b68163d8b87e5402b687ed /include/vcl/textrectinfo.hxx
parentuse tools::Long in svtools (diff)
downloadcore-3aef606f2758172a27718a06fea0ff9080e4d80f.tar.gz
core-3aef606f2758172a27718a06fea0ff9080e4d80f.zip
use tools::Long in vcl
Change-Id: Ice1055021e8568634e9a66ba89d3bb4ef4e731df Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104522 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/textrectinfo.hxx')
-rw-r--r--include/vcl/textrectinfo.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/textrectinfo.hxx b/include/vcl/textrectinfo.hxx
index c13d65e80362..3802187b5e35 100644
--- a/include/vcl/textrectinfo.hxx
+++ b/include/vcl/textrectinfo.hxx
@@ -28,14 +28,14 @@ class VCL_DLLPUBLIC TextRectInfo
friend class ::OutputDevice;
private:
- long mnMaxWidth;
+ tools::Long mnMaxWidth;
sal_uInt16 mnLineCount;
bool mbEllipsis;
public:
TextRectInfo();
- long GetMaxLineWidth() const { return mnMaxWidth; }
+ tools::Long GetMaxLineWidth() const { return mnMaxWidth; }
bool IsEllipses() const { return mbEllipsis; }
bool operator ==( const TextRectInfo& rInfo ) const