diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-10-03 14:58:14 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-10-03 16:15:00 +0200 |
commit | 5a1e73615e5fe0c1737afdc184444f971d80ab20 (patch) | |
tree | a0ed002d714991a35726307e1ed43e913e1cf4ae /sw/inc/docary.hxx | |
parent | 087a8cb10058acdd1bd5071ca3d4725fe585dd7d (diff) |
sw: include names of character and paragraph styles in doc model dump
Change-Id: Ib766fa7753e52ad81f5fe976d0e6c3e1f688a826
Diffstat (limited to 'sw/inc/docary.hxx')
-rw-r--r-- | sw/inc/docary.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/inc/docary.hxx b/sw/inc/docary.hxx index 6b9636ee27fd..db4a419df3b5 100644 --- a/sw/inc/docary.hxx +++ b/sw/inc/docary.hxx @@ -88,6 +88,7 @@ public: virtual SwFmt* GetFmt(size_t idx) const { return (SwFmt*)operator[](idx); } sal_uInt16 GetPos(const SwCharFmt* pFmt) const; bool Contains(const SwCharFmt* pFmt) const; + void dumpAsXml(xmlTextWriterPtr w); /// free's any remaining child objects virtual ~SwCharFmts(); }; @@ -98,6 +99,7 @@ public: virtual size_t GetFmtCount() const { return size(); } virtual SwFmt* GetFmt(size_t idx) const { return (SwFmt*)operator[](idx); } sal_uInt16 GetPos(const SwTxtFmtColl* pFmt) const; + void dumpAsXml(xmlTextWriterPtr w); virtual ~SwTxtFmtColls() {} }; |