diff options
author | Felipe Lema <felipelema@mortemale.org> | 2021-04-01 15:57:56 -0300 |
---|---|---|
committer | Thorsten Behrens <thorsten.behrens@allotropia.de> | 2021-11-03 13:33:09 +0100 |
commit | 8b1318324e574e510adb0c39fd744de360dd19b3 (patch) | |
tree | d0ac8097c59cf9ade6a67a0c40d5ff7a1337ddf2 /sc/inc | |
parent | 950483343d2f8218ac886aac27e1072bfec304bf (diff) |
tdf#97667 Add XML Dump methods for Calc Pool Items
Continuation of https://gerrit.libreoffice.org/c/core/+/88475
Change-Id: Ic41ae7df362a796c56e95b38ccb534bbe045ead7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113497
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/attrib.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/inc/attrib.hxx b/sc/inc/attrib.hxx index 57fb4a74db58..92a0c3865c9c 100644 --- a/sc/inc/attrib.hxx +++ b/sc/inc/attrib.hxx @@ -156,6 +156,7 @@ public: bHidePrint = rProtection.bHidePrint; return *this; } + virtual void dumpAsXml(xmlTextWriterPtr pWriter) const override; }; // page format item: contents of header and footer @@ -188,6 +189,7 @@ public: void SetLeftArea( const EditTextObject& rNew ); void SetCenterArea( const EditTextObject& rNew ); void SetRightArea( const EditTextObject& rNew ); + virtual void dumpAsXml(xmlTextWriterPtr pWriter) const override; }; // page format item: contents of header and footer @@ -253,6 +255,7 @@ public: virtual bool QueryValue( css::uno::Any& rAny, sal_uInt8 nMemberId = 0 ) const override; virtual bool PutValue( const css::uno::Any& rAny, sal_uInt8 nMemberId ) override; + virtual void dumpAsXml(xmlTextWriterPtr pWriter) const override; private: sal_uInt16 mnWidth; |