diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-01-31 18:09:05 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-01-31 18:09:25 +0100 |
commit | e4b0d63c134e7833db562f4eef93bbf828ea1b9d (patch) | |
tree | acdd48c6a14d27b299a3c067f73b6091e285661a /include/svl | |
parent | d2a6d6a1a05337dbb733a9a3d4926a5c6d6cd8cd (diff) |
Extract SfxUndoAction::dumpAsXml() from sw
Change-Id: I7ec2071150c03b61f3f681dbd26968ae3c535742
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/undo.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/svl/undo.hxx b/include/svl/undo.hxx index 92a9907db0f2..2c1923876ab6 100644 --- a/include/svl/undo.hxx +++ b/include/svl/undo.hxx @@ -71,6 +71,7 @@ public: virtual OUString GetComment() const; virtual OUString GetRepeatComment(SfxRepeatTarget&) const; virtual sal_uInt16 GetId() const; + virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const; private: SfxUndoAction( const SfxUndoAction& ); // disabled @@ -159,6 +160,7 @@ public: virtual sal_uInt16 GetId() const SAL_OVERRIDE; void SetComment(const OUString& rComment); + void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE; }; |