diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-28 11:00:54 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-29 09:19:47 +0900 |
commit | f50fd9692ed7b9632c0f8dad9508f5a207679be4 (patch) | |
tree | 50c9598cb186708215899b45c43623447b7b60ff /svx/workben | |
parent | d36da8c19378f4772c896ca4df94117077e823d6 (diff) |
mass rewrite Paint(Rect&) to Paint(RenderContext&, Rect&)
Change-Id: Ia1667246064d11827dbd149def15e5bf08b119b8
Diffstat (limited to 'svx/workben')
-rw-r--r-- | svx/workben/pixelctl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/workben/pixelctl.cxx b/svx/workben/pixelctl.cxx index 591e0011f9a9..58b29367c239 100644 --- a/svx/workben/pixelctl.cxx +++ b/svx/workben/pixelctl.cxx @@ -90,7 +90,7 @@ public: void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE; void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE; void KeyUp( const KeyEvent& rKEvt ) SAL_OVERRIDE; - void Paint( const Rectangle& rRect ) SAL_OVERRIDE; + void Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect ) SAL_OVERRIDE; void Resize() SAL_OVERRIDE; bool Close() SAL_OVERRIDE; @@ -153,7 +153,7 @@ void MyWin::KeyUp( const KeyEvent& rKEvt ) WorkWindow::KeyUp( rKEvt ); } -void MyWin::Paint( const Rectangle& rRect ) +void MyWin::Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect ) { WorkWindow::Paint( rRect ); } |