summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-04-29 11:49:47 +0900
committerTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-04-29 11:53:11 +0900
commit969d833e7927f099de35b87d225a9e9dd9f08661 (patch)
tree2cb6fc14cf8ca353a2eb627704876aabc98a301c /extensions
parentf1b0cf258d319f28b36c0c4452f3751248e24b6e (diff)
Also add RenderContext parameter to updatecheckui
Change-Id: Idf648740f58c120fa08c9a278a511c6be205ce79
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx4
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;