diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-12-28 18:43:54 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-12-28 19:25:59 +0100 |
commit | 337aa303284b42c4fb13bff4beffdcf445a715cd (patch) | |
tree | 1ef4b886329f07bc8673352d43d278853e93f2a7 /sw/inc | |
parent | daebeae541d354c36e42434411e64755c70329e3 (diff) |
Factor out SwFmtCol::dumpAsXml() from docnode
Change-Id: Ic41b981c989aec658e95889b72bd76ecacb13a9a
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/fmtclds.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/inc/fmtclds.hxx b/sw/inc/fmtclds.hxx index 3370a983d3b5..a98e39f19341 100644 --- a/sw/inc/fmtclds.hxx +++ b/sw/inc/fmtclds.hxx @@ -54,6 +54,8 @@ public: sal_uInt16 GetLower() const { return nLower; } sal_uInt16 GetLeft () const { return nLeft; } sal_uInt16 GetRight() const { return nRight; } + + void dumpAsXml(struct _xmlTextWriter* pWriter) const; }; typedef boost::ptr_vector<SwColumn> SwColumns; @@ -160,6 +162,8 @@ public: /** As above except that it @return the width of PrtArea - that corresponds to what constitutes the column for the user. */ sal_uInt16 CalcPrtColWidth( sal_uInt16 nCol, sal_uInt16 nAct ) const; + + void dumpAsXml(struct _xmlTextWriter* pWriter) const; }; inline const SwFmtCol &SwAttrSet::GetCol(bool bInP) const |