vcl/source/gdi/mtfxmldump.cxx | 3 --- 1 file changed, 3 deletions(-) New commits: commit fde5f0083e71d68fcd2b3830e2944a4adada464c Author: Miklos Vajna <vmik...@collabora.com> AuthorDate: Wed Jan 19 10:39:18 2022 +0100 Commit: Miklos Vajna <vmik...@collabora.com> CommitDate: Wed Jan 19 12:09:47 2022 +0100
vcl: remove FIXME in MetafileXmlDump::writeXml() Commit fff9163cd8ad27d251c06d0e903a71e185009d80 (Add ClipRegion cppunit test to vcl, 2021-06-10) implemented this, just forgot to remove the FIXME. Change-Id: I53f1ba385a0dfae5693313306089f72434e140ed Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128595 Reviewed-by: Miklos Vajna <vmik...@collabora.com> Tested-by: Jenkins diff --git a/vcl/source/gdi/mtfxmldump.cxx b/vcl/source/gdi/mtfxmldump.cxx index 11c76ac5af5c..f7a3b0078462 100644 --- a/vcl/source/gdi/mtfxmldump.cxx +++ b/vcl/source/gdi/mtfxmldump.cxx @@ -1094,9 +1094,6 @@ void MetafileXmlDump::writeXml(const GDIMetaFile& rMetaFile, tools::XmlWriter& r const auto* pMetaClipRegionAction = static_cast<const MetaClipRegionAction*>(pAction); rWriter.startElement(sCurrentElementTag); - // FIXME for now we dump only the bounding box; this is - // enough for the tests we have, but may need extending to - // dumping the real polypolygon in the future tools::Rectangle aRectangle = pMetaClipRegionAction->GetRegion().GetBoundRect(); writeRectangle(rWriter, aRectangle);