diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-30 16:49:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-03 06:08:14 +0000 |
commit | ba3521f28831f41c92aa863ba6ba6da7c91c56f7 (patch) | |
tree | 23cd127507e7b6f0268de65716c8ed559874cd25 /svl | |
parent | bc4715ddac99ca104e1ba6b313f089cfe4039381 (diff) |
add more dumpAsXml()
and make it format the output nicely, so I don't have to use 'xmllint
--format' before I can read it.
Change-Id: I065ee93193f3c6c7bab87212ab96021fb0d7c5ed
Reviewed-on: https://gerrit.libreoffice.org/29407
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/itempool.cxx | 12 | ||||
-rw-r--r-- | svl/source/undo/undo.cxx | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx index a2fd333b0470..3fc63112f6be 100644 --- a/svl/source/items/itempool.cxx +++ b/svl/source/items/itempool.cxx @@ -20,6 +20,7 @@ #include <svl/itempool.hxx> #include <string.h> +#include <libxml/xmlwriter.h> #include <osl/diagnose.h> #include <sal/log.hxx> @@ -993,4 +994,15 @@ void SfxItemPool::SetFileFormatVersion( sal_uInt16 nFileFormatVersion ) const SfxItemPool* SfxItemPool::pStoringPool_ = nullptr; +void SfxItemPool::dumpAsXml(xmlTextWriterPtr pWriter) const +{ + xmlTextWriterStartElement(pWriter, BAD_CAST("sfxItemPool")); + for (auto const & rArrayPtr : pImpl->maPoolItems) + if (rArrayPtr) + for (auto const & rItem : *rArrayPtr) + if (rItem) + rItem->dumpAsXml(pWriter); + xmlTextWriterEndElement(pWriter); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svl/source/undo/undo.cxx b/svl/source/undo/undo.cxx index ec847a95b705..b0932c9d8e6d 100644 --- a/svl/source/undo/undo.cxx +++ b/svl/source/undo/undo.cxx @@ -1269,6 +1269,8 @@ void SfxUndoManager::dumpAsXml(xmlTextWriterPtr pWriter) const if (!pWriter) { pWriter = xmlNewTextWriterFilename("undo.xml", 0); + xmlTextWriterSetIndent(pWriter,1); + xmlTextWriterSetIndentString(pWriter, BAD_CAST(" ")); xmlTextWriterStartDocument(pWriter, nullptr, nullptr, nullptr); bOwns = true; } |