diff options
author | Priyanka Gaikwad <priyanka.gaikwad@synerzip.com> | 2013-11-12 11:29:34 +0530 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-11-14 13:51:52 +0100 |
commit | 7e115a4685ad21872e6759686860c5113e19c473 (patch) | |
tree | c5db71f9a2aa4c8363b730288e70c8ce4e565458 /include/editeng | |
parent | 99b2f2bdef388bafd127139f7a05e47dc1592738 (diff) |
Fixed for spacing between lines in paragraph.
Problem Description:
In "w:spacing" value of "w:line" attribute value is not getting preserved.
Conflicts:
sw/qa/extras/ooxmlexport/ooxmlexport.cxx
Reviewed on:
https://gerrit.libreoffice.org/6645
Change-Id: Id9da4f9234d14cf4599c6520b4a191ad9af92c25
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/lspcitem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/lspcitem.hxx b/include/editeng/lspcitem.hxx index 91505d5e1f99..d04e876fab04 100644 --- a/include/editeng/lspcitem.hxx +++ b/include/editeng/lspcitem.hxx @@ -38,7 +38,7 @@ class EDITENG_DLLPUBLIC SvxLineSpacingItem : public SfxEnumItemInterface short nInterLineSpace; sal_uInt16 nLineHeight; - sal_uInt8 nPropLineSpace; + sal_uInt16 nPropLineSpace; SvxLineSpace eLineSpace; SvxInterLineSpace eInterLineSpace; @@ -83,7 +83,7 @@ public: } // To increase or decrease the row height. - sal_uInt8 GetPropLineSpace() const { return nPropLineSpace; } + sal_uInt16 GetPropLineSpace() const { return nPropLineSpace; } inline void SetPropLineSpace( const sal_uInt8 nProp ) { nPropLineSpace = nProp; |