From 72ffa98e892ad1b64ff3a00b1e26a995cba3076f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 16 Nov 2016 08:59:00 +0200 Subject: make the element names in dumpAsXml match the class names Change-Id: I955facfe3e901fcb76798dab342f96a67d5ac63f Reviewed-on: https://gerrit.libreoffice.org/30894 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svl/source/items/itempool.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svl/source/items/itempool.cxx') diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx index 2af68e1f33ef..c61fec457129 100644 --- a/svl/source/items/itempool.cxx +++ b/svl/source/items/itempool.cxx @@ -992,7 +992,7 @@ const SfxItemPool* SfxItemPool::pStoringPool_ = nullptr; void SfxItemPool::dumpAsXml(xmlTextWriterPtr pWriter) const { - xmlTextWriterStartElement(pWriter, BAD_CAST("sfxItemPool")); + xmlTextWriterStartElement(pWriter, BAD_CAST("SfxItemPool")); for (auto const & rArrayPtr : pImpl->maPoolItems) if (rArrayPtr) for (auto const & rItem : *rArrayPtr) -- cgit