summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshod Nakashian <ashod.nakashian@collabora.co.uk>2017-11-28 23:00:43 -0500
committerAshod Nakashian <ashnakash@gmail.com>2017-11-29 05:07:26 +0100
commit85a47e76ea80c6a0676ac3b44032361733d44af3 (patch)
treef81c9f0ad86aefe8585a0da3b8446b81c3285c97
parentbadd7363df0cdd95ddd9ab7f2008edd54dc0cbc9 (diff)
Axe debug logging
Change-Id: I21a636d6ae1b824d44dc8d30499fcd6948834153 Reviewed-on: https://gerrit.libreoffice.org/45459 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
-rw-r--r--sw/source/core/layout/paintfrm.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/sw/source/core/layout/paintfrm.cxx b/sw/source/core/layout/paintfrm.cxx
index bee3cd75d2ed..ed716a4c20bd 100644
--- a/sw/source/core/layout/paintfrm.cxx
+++ b/sw/source/core/layout/paintfrm.cxx
@@ -6089,7 +6089,6 @@ static void lcl_paintBitmapExToRect(vcl::RenderContext *pOut, const Point& aPoin
for (Rectangle aTile = Rectangle(aPoint, aTileSize); true; aTile.Move(iterX, iterY))
{
Rectangle aRender = aComplete.GetIntersection(aTile);
- SAL_DEBUG("Intersect " << aComplete << " with " << aTile << " to " << aRender << "bitmap is " << rBitmapEx.GetSizePixel());
if (aRender.IsEmpty())
break;
pOut->DrawBitmapEx(pOut->PixelToLogic(aRender.TopLeft()),
@@ -6097,7 +6096,6 @@ static void lcl_paintBitmapExToRect(vcl::RenderContext *pOut, const Point& aPoin
Point(0, 0), aRender.GetSize(),
rBitmapEx);
}
-
}
/**