diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-27 15:25:06 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-29 09:03:56 +0900 |
commit | 56e2f3e338f3f0da6f38da805d24438b5bcc7b06 (patch) | |
tree | 708f2107553a1e16600e2b028e36cb6854746649 /include | |
parent | d3ba96e37ec4681b9b7cb1ffac5e34060e47a4ee (diff) |
Add paint with render context to window -> impl. calls old paint
Change-Id: Ic4823f9f74c75e87de92d07a9a1310a7eed93074
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/window.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 1a1aef9a7617..8807649a88a6 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -702,7 +702,8 @@ public: virtual void KeyInput( const KeyEvent& rKEvt ); virtual void KeyUp( const KeyEvent& rKEvt ); virtual void PrePaint(); - virtual void Paint( const Rectangle& rRect ); + virtual void Paint(vcl::RenderContext* pRenderContext, const Rectangle& rRect); + virtual void Paint(const Rectangle& rRect); virtual void Erase() SAL_OVERRIDE; virtual void Erase( const Rectangle& rRect ) SAL_OVERRIDE { ::OutputDevice::Erase( rRect ); } |