From ce35b9480edb331c5f295b83c6132c0e3dee4f78 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Sat, 17 Oct 2020 21:56:16 +0200 Subject: remove left-over printf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2327cfbd8e291820453b4784badfdbc0a6314355 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106381 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl --- svgio/source/svgreader/svgvisitor.cxx | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'svgio/source') 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(mpCurrent.get())->maRectangle = aRange; } break; - case svgio::svgreader::SVGTokenG: - { - auto const& rGNode = static_cast(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(rNode); -- cgit v1.2.3