[Libreoffice-commits] core.git: reportdesign/source

Tomaž Vajngerl tomaz.vajngerl at collabora.co.uk
Mon May 18 01:28:10 PDT 2015


 reportdesign/source/ui/report/ReportSection.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4257f4db06f6dd7c35281a89f5aafebe9c2ccb0b
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
Date:   Mon May 18 17:26:11 2015 +0900

    fix Wundefined-bool-conversion
    
    Change-Id: I99e57e3f4b3f5b9fa21cdf6bfbda4b15ce83eaac

diff --git a/reportdesign/source/ui/report/ReportSection.cxx b/reportdesign/source/ui/report/ReportSection.cxx
index 2371090..08719ff 100644
--- a/reportdesign/source/ui/report/ReportSection.cxx
+++ b/reportdesign/source/ui/report/ReportSection.cxx
@@ -162,7 +162,7 @@ void OReportSection::Paint( vcl::RenderContext& rRenderContext, const Rectangle&
         if(pPgView)
         {
             pPgView->DrawLayer(0, &rRenderContext);
-            pPgView->GetView().EndDrawLayers(*pTargetPaintWindow, &rRenderContext);
+            pPgView->GetView().EndDrawLayers(*pTargetPaintWindow, true);
         }
 
         m_pView->CompleteRedraw(&rRenderContext, aPaintRectRegion);


More information about the Libreoffice-commits mailing list