diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-29 11:49:47 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-29 11:53:11 +0900 |
commit | 969d833e7927f099de35b87d225a9e9dd9f08661 (patch) | |
tree | 2cb6fc14cf8ca353a2eb627704876aabc98a301c | |
parent | f1b0cf258d319f28b36c0c4452f3751248e24b6e (diff) |
Also add RenderContext parameter to updatecheckui
Change-Id: Idf648740f58c120fa08c9a278a511c6be205ce79
-rw-r--r-- | extensions/source/update/ui/updatecheckui.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index e282b11b430a..dea223223a1b 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -110,7 +110,7 @@ public: virtual ~BubbleWindow(); virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; - virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE; + virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) SAL_OVERRIDE; void Resize() SAL_OVERRIDE; void Show( bool bVisible = true, sal_uInt16 nFlags = SHOW_NOACTIVATE ); void SetTipPosPixel( const Point& rTipPos ) { maTipPos = rTipPos; } @@ -820,7 +820,7 @@ void BubbleWindow::SetTitleAndText( const OUString& rTitle, } -void BubbleWindow::Paint( const Rectangle& ) +void BubbleWindow::Paint(vcl::RenderContext& /*rRenderContext*/, const Rectangle& /*rRect*/) { SolarMutexGuard aGuard; |