summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-11-22 04:30:48 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-11-26 02:26:41 +0100
commit9e04fac561efd6bbfd6e43b0499b5542c0b4f526 (patch)
tree7832273e2ace02449e3a1e6380b8bcb50e64d185 /include
parent91aba7ca4f0f8d0b08802b65bfd62fbf3532315f (diff)
add dumpAsXml methods to more pool items
Change-Id: Ia33ac2dfa23bdc4e2990e6d028d1bae7fedfe4f5 Reviewed-on: https://gerrit.libreoffice.org/63853 Tested-by: Jenkins Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/editeng/colritem.hxx2
-rw-r--r--include/svl/intitem.hxx3
-rw-r--r--include/svx/e3ditem.hxx2
3 files changed, 7 insertions, 0 deletions
diff --git a/include/editeng/colritem.hxx b/include/editeng/colritem.hxx
index 49415c9a7b82..2fb55666e639 100644
--- a/include/editeng/colritem.hxx
+++ b/include/editeng/colritem.hxx
@@ -68,6 +68,8 @@ public:
return mColor;
}
void SetValue(const Color& rNewColor);
+
+ void dumpAsXml(struct _xmlTextWriter* pWriter) const override;
};
// XXX: to be moved in a separate header.
diff --git a/include/svl/intitem.hxx b/include/svl/intitem.hxx
index 448eda8a514b..165fabae8da9 100644
--- a/include/svl/intitem.hxx
+++ b/include/svl/intitem.hxx
@@ -121,6 +121,7 @@ public:
virtual SfxPoolItem * Clone(SfxItemPool * = nullptr) const override
{ return new SfxInt32Item(*this); }
+ void dumpAsXml(struct _xmlTextWriter* pWriter) const override;
};
@@ -140,6 +141,8 @@ public:
virtual SfxPoolItem * Clone(SfxItemPool * = nullptr) const override
{ return new SfxUInt32Item(*this); }
+
+ void dumpAsXml(struct _xmlTextWriter* pWriter) const override;
};
#endif // INCLUDED_SVL_INTITEM_HXX
diff --git a/include/svx/e3ditem.hxx b/include/svx/e3ditem.hxx
index 57ccdb1f581e..e18e50a2795c 100644
--- a/include/svx/e3ditem.hxx
+++ b/include/svx/e3ditem.hxx
@@ -44,6 +44,8 @@ public:
const basegfx::B3DVector& GetValue() const { return aVal; }
virtual sal_uInt16 GetVersion (sal_uInt16 nFileFormatVersion) const override;
+
+ void dumpAsXml(struct _xmlTextWriter* pWriter) const override;
};
#endif