summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2020-10-17 21:56:16 +0200
committerTomaž Vajngerl <quikee@gmail.com>2020-11-23 08:09:51 +0100
commitce35b9480edb331c5f295b83c6132c0e3dee4f78 (patch)
tree82002649d73618632243e36c08507d93229f94a9 /svgio/source/svgreader
parent750e3b2118cd5bdfe2ee6fdfb092255b9c6db728 (diff)
remove left-over printf
Change-Id: I2327cfbd8e291820453b4784badfdbc0a6314355 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106381 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'svgio/source/svgreader')
-rw-r--r--svgio/source/svgreader/svgvisitor.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/svgio/source/svgreader/svgvisitor.cxx b/svgio/source/svgreader/svgvisitor.cxx
index 1f2ea975c4ca..48fc9aa71af4 100644
--- a/svgio/source/svgreader/svgvisitor.cxx
+++ b/svgio/source/svgreader/svgvisitor.cxx
@@ -39,20 +39,6 @@ void SvgDrawVisitor::visit(svgio::svgreader::SvgNode const& rNode)
static_cast<gfx::DrawRoot*>(mpCurrent.get())->maRectangle = aRange;
}
break;
- case svgio::svgreader::SVGTokenG:
- {
- auto const& rGNode = static_cast<svgio::svgreader::SvgGNode const&>(rNode);
-
- if (rGNode.getTransform() != nullptr)
- {
- basegfx::B2DHomMatrix rMatrix = *rGNode.getTransform();
-
- printf("G [%f %f %f - %f %f %f - %f %f %f]\n", rMatrix.get(0, 0), rMatrix.get(0, 1),
- rMatrix.get(0, 2), rMatrix.get(1, 0), rMatrix.get(1, 1), rMatrix.get(1, 2),
- rMatrix.get(2, 0), rMatrix.get(2, 1), rMatrix.get(2, 2));
- }
- }
- break;
case svgio::svgreader::SVGTokenRect:
{
auto const& rRectNode = static_cast<svgio::svgreader::SvgRectNode const&>(rNode);