diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-05-18 17:26:11 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-05-18 17:27:38 +0900 |
commit | 4257f4db06f6dd7c35281a89f5aafebe9c2ccb0b (patch) | |
tree | 66fbeca5a9fa1b7c6e241e5ad7be63299b1e703a /reportdesign | |
parent | 950f825f652047c3e8ed67317ca3c597e03b63d0 (diff) |
fix Wundefined-bool-conversion
Change-Id: I99e57e3f4b3f5b9fa21cdf6bfbda4b15ce83eaac
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/report/ReportSection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/report/ReportSection.cxx b/reportdesign/source/ui/report/ReportSection.cxx index 237109010c9c..08719ff3b501 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); |