diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-08 23:20:42 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-08 23:20:42 +0100 |
commit | c8486f866dd6d7a8db6b4df5a68f013ce142de62 (patch) | |
tree | 26ebdc58ae7b74759a735e052b6383a4267a0afe /vcl/source/bitmap | |
parent | bab105b923175d3e7eab7ee0af950a6a267c1afa (diff) |
Leftover debug code? (causes -Werror,-Wformat)
Change-Id: I8629481a454a668b3044eb6f56dbe43d4720e52a
Diffstat (limited to 'vcl/source/bitmap')
-rw-r--r-- | vcl/source/bitmap/BitmapTools.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/vcl/source/bitmap/BitmapTools.cxx b/vcl/source/bitmap/BitmapTools.cxx index c65376ac149e..a82b95ca924c 100644 --- a/vcl/source/bitmap/BitmapTools.cxx +++ b/vcl/source/bitmap/BitmapTools.cxx @@ -75,8 +75,6 @@ void BitmapTools::loadFromSvg(SvStream& rStream, const OUString& sPath, BitmapEx const css::uno::Reference<css::rendering::XBitmap> xBitmap( xPrimitive2DRenderer->rasterize(aPrimitiveSequence, aViewParameters, nDPI, nDPI, aRealRect, 256*256)); - printf("%f %f %f %f\n", aRealRect.X1, aRealRect.Y1, aRealRect.X2, aRealRect.Y2); - if (xBitmap.is()) { const css::uno::Reference<css::rendering::XIntegerReadOnlyBitmap> xIntBmp(xBitmap, uno::UNO_QUERY_THROW); @@ -84,7 +82,6 @@ void BitmapTools::loadFromSvg(SvStream& rStream, const OUString& sPath, BitmapEx if (xIntBmp.is()) { rBitmapEx = vcl::unotools::bitmapExFromXBitmap(xIntBmp); - printf("Size: %d %d\n", rBitmapEx.GetSizePixel().Width(), rBitmapEx.GetSizePixel().Height()); } } } |