diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-09-07 20:09:15 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-09-08 08:15:13 +0200 |
commit | edd121dd668e141cd61f0992340fa07eb6df8e76 (patch) | |
tree | 8c2a99836f933aaa9bd70ac8505d12953b108cc9 /sw/inc/redline.hxx | |
parent | 3c24177104dfa5b8d68d74bf1735839964e93ba6 (diff) |
sw doc model xml dump: show all redline data of a range redline
E.g. Alice does an insert, then Bob does a delete in the middle, then
the deletion redline will have 2 redline data, the first will be the
delete, the second will be the original insert, show this in the xml
dump.
Change-Id: Ide9777cdbc8a5460fe28c646104901c968a33382
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156680
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw/inc/redline.hxx')
-rw-r--r-- | sw/inc/redline.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/inc/redline.hxx b/sw/inc/redline.hxx index 1fccb405e192..7ef6b9cad20f 100644 --- a/sw/inc/redline.hxx +++ b/sw/inc/redline.hxx @@ -157,6 +157,8 @@ public: void SetSeqNo( sal_uInt16 nNo ) { m_nSeqNo = nNo; } OUString GetDescr() const; + + void dumpAsXml(xmlTextWriterPtr pWriter) const; }; class SW_DLLPUBLIC SwRangeRedline final : public SwPaM |