summaryrefslogtreecommitdiff
path: root/vcl/inc/textlineinfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc/textlineinfo.hxx')
-rw-r--r--vcl/inc/textlineinfo.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/textlineinfo.hxx b/vcl/inc/textlineinfo.hxx
index 03b19ede96e6..6b0e72ad36aa 100644
--- a/vcl/inc/textlineinfo.hxx
+++ b/vcl/inc/textlineinfo.hxx
@@ -26,19 +26,19 @@
class ImplTextLineInfo
{
private:
- long mnWidth;
+ tools::Long mnWidth;
sal_Int32 mnIndex;
sal_Int32 mnLen;
public:
- ImplTextLineInfo( long nWidth, sal_Int32 nIndex, sal_Int32 nLen )
+ ImplTextLineInfo( tools::Long nWidth, sal_Int32 nIndex, sal_Int32 nLen )
{
mnWidth = nWidth;
mnIndex = nIndex;
mnLen = nLen;
}
- long GetWidth() const { return mnWidth; }
+ tools::Long GetWidth() const { return mnWidth; }
sal_Int32 GetIndex() const { return mnIndex; }
sal_Int32 GetLen() const { return mnLen; }
};