diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2022-01-19 10:39:18 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2022-01-19 12:09:47 +0100 |
commit | fde5f0083e71d68fcd2b3830e2944a4adada464c (patch) | |
tree | 0bea31f50f70f9e820aa9ee6ff0052d61f96ec61 /vcl | |
parent | ed31a7c85a167d346cc203ac83cf53878c60101f (diff) |
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 <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/mtfxmldump.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
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); |