diff options
author | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-03-16 16:06:49 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2011-03-19 15:33:13 +0100 |
commit | 481e04cd43701e6f760715e1c22000707f63ce32 (patch) | |
tree | b50244f0e59075ca4349da431f6ecaf91d39995b /sw/inc/unosett.hxx | |
parent | 67697d941503b52c4fb455e3c8cf2fcdc58377bd (diff) |
Added column separator style in ODF
Diffstat (limited to 'sw/inc/unosett.hxx')
-rw-r--r-- | sw/inc/unosett.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/inc/unosett.hxx b/sw/inc/unosett.hxx index 6b2cd2048f96..c5e75de6eb8f 100644 --- a/sw/inc/unosett.hxx +++ b/sw/inc/unosett.hxx @@ -262,6 +262,8 @@ class SwXTextColumns : public cppu::WeakAggImplHelper4 sal_Int8 nSepLineHeightRelative; sal_Int8 nSepLineVertAlign;//style::VerticalAlignment sal_Bool bSepLineIsOn; + sal_Int8 nSepLineStyle; + protected: virtual ~SwXTextColumns(); public: @@ -301,6 +303,7 @@ public: sal_Int8 GetSepLineHeightRelative() const {return nSepLineHeightRelative;} sal_Int8 GetSepLineVertAlign() const {return nSepLineVertAlign;} sal_Bool GetSepLineIsOn() const {return bSepLineIsOn;} + sal_Int8 GetSepLineStyle() const {return nSepLineStyle;} sal_Bool IsAutomaticWidth() const {return bIsAutomaticWidth;} }; |