diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-05-13 13:36:14 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-05-13 13:57:46 +0900 |
commit | 0ac80267730300f53e2410ffe9c0883f19f656a6 (patch) | |
tree | f3d4c58a5d434d5c436e62c132f5f0cbca366ac2 /sc/source/ui/view/gridwin4.cxx | |
parent | 822ee8a3395588d2022d3d560ed4e1ed34c369a5 (diff) |
add PostPaint and change PrePaint to include RenderContext param.
Change-Id: I26e03159fa6115025c6cf376e6ce71443bc98cec
Diffstat (limited to 'sc/source/ui/view/gridwin4.cxx')
-rw-r--r-- | sc/source/ui/view/gridwin4.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx index 2f291d7e0947..a3e51704c31e 100644 --- a/sc/source/ui/view/gridwin4.cxx +++ b/sc/source/ui/view/gridwin4.cxx @@ -283,7 +283,7 @@ void ScGridWindow::DoInvertRect( const Rectangle& rPixel ) UpdateHeaderOverlay(); // uses aInvertRect } -void ScGridWindow::PrePaint() +void ScGridWindow::PrePaint(vcl::RenderContext& /*rRenderContext*/) { // forward PrePaint to DrawingLayer ScTabViewShell* pTabViewShell = pViewData->GetViewShell(); @@ -292,7 +292,7 @@ void ScGridWindow::PrePaint() { SdrView* pDrawView = pTabViewShell->GetSdrView(); - if(pDrawView) + if (pDrawView) { pDrawView->PrePaint(); } |