diff options
Diffstat (limited to 'vcl/source/edit')
-rw-r--r-- | vcl/source/edit/textdat2.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/edit/textdat2.hxx b/vcl/source/edit/textdat2.hxx index 1f9d2428d9f2..c620f91ad4e2 100644 --- a/vcl/source/edit/textdat2.hxx +++ b/vcl/source/edit/textdat2.hxx @@ -49,15 +49,15 @@ class TextView; class TETextPortion { private: + tools::Long nWidth; sal_Int32 nLen; - tools::Long nWidth; sal_uInt8 nKind; bool bRightToLeft; public: TETextPortion( sal_Int32 nL ) - : nLen {nL} - , nWidth {-1} + : nWidth {-1} + , nLen {nL} , nKind {PORTIONKIND_TEXT} , bRightToLeft {false} {} |