diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-28 15:09:39 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-04-29 09:27:54 +0900 |
commit | 6cea2e61cf77bfe5bc53aa6002807c9b38e77499 (patch) | |
tree | 45c3876576c58fb47461ba7730658805ddd1ca25 /sfx2/source/sidebar | |
parent | 704ebef99de606f5a60c495130e6e3d791981042 (diff) |
fix compile: delegate RenderContext parameter to super
Change-Id: I1c08e29c45d8334db52b129a957098481f3e57a4
Diffstat (limited to 'sfx2/source/sidebar')
-rw-r--r-- | sfx2/source/sidebar/MenuButton.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/sidebar/Panel.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/sidebar/TabBar.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/sidebar/TabItem.cxx | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sfx2/source/sidebar/MenuButton.cxx b/sfx2/source/sidebar/MenuButton.cxx index a0a945ecc7cd..3bd24c1d4011 100644 --- a/sfx2/source/sidebar/MenuButton.cxx +++ b/sfx2/source/sidebar/MenuButton.cxx @@ -39,7 +39,7 @@ MenuButton::MenuButton (vcl::Window* pParentWindow) #endif } -void MenuButton::Paint (vcl::RenderContext& /*rRenderContext*/, const Rectangle& rUpdateArea) +void MenuButton::Paint (vcl::RenderContext& rRenderContext, const Rectangle& rUpdateArea) { switch(mePaintType) { @@ -70,7 +70,7 @@ void MenuButton::Paint (vcl::RenderContext& /*rRenderContext*/, const Rectangle& break; } case PT_Native: - Button::Paint(rUpdateArea); + Button::Paint(rRenderContext, rUpdateArea); // DrawImage(maIconPosition, maIcon); break; } diff --git a/sfx2/source/sidebar/Panel.cxx b/sfx2/source/sidebar/Panel.cxx index 13b853268ec6..f277efd52165 100644 --- a/sfx2/source/sidebar/Panel.cxx +++ b/sfx2/source/sidebar/Panel.cxx @@ -130,9 +130,9 @@ bool Panel::HasIdPredicate (const ::rtl::OUString& rsId) const return msPanelId.equals(rsId); } -void Panel::Paint (vcl::RenderContext& /*rRenderContext*/, const Rectangle& rUpdateArea) +void Panel::Paint (vcl::RenderContext& rRenderContext, const Rectangle& rUpdateArea) { - Window::Paint(rUpdateArea); + Window::Paint(rRenderContext, rUpdateArea); } void Panel::Resize() diff --git a/sfx2/source/sidebar/TabBar.cxx b/sfx2/source/sidebar/TabBar.cxx index df7a184667c8..fd8695ee0205 100644 --- a/sfx2/source/sidebar/TabBar.cxx +++ b/sfx2/source/sidebar/TabBar.cxx @@ -79,9 +79,9 @@ void TabBar::dispose() vcl::Window::dispose(); } -void TabBar::Paint (vcl::RenderContext& /*rRenderContext*/, const Rectangle& rUpdateArea) +void TabBar::Paint (vcl::RenderContext& rRenderContext, const Rectangle& rUpdateArea) { - Window::Paint(rUpdateArea); + Window::Paint(rRenderContext, rUpdateArea); const sal_Int32 nHorizontalPadding (Theme::GetInteger(Theme::Int_TabMenuSeparatorPadding)); SetLineColor(Theme::GetColor(Theme::Color_TabMenuSeparator)); diff --git a/sfx2/source/sidebar/TabItem.cxx b/sfx2/source/sidebar/TabItem.cxx index d05c906fb057..0d7f8667a16b 100644 --- a/sfx2/source/sidebar/TabItem.cxx +++ b/sfx2/source/sidebar/TabItem.cxx @@ -42,7 +42,7 @@ TabItem::TabItem (vcl::Window* pParentWindow) #endif } -void TabItem::Paint (vcl::RenderContext& /*rRenderContext*/, const Rectangle& rUpdateArea) +void TabItem::Paint (vcl::RenderContext& rRenderContext, const Rectangle& rUpdateArea) { switch(mePaintType) { @@ -74,7 +74,7 @@ void TabItem::Paint (vcl::RenderContext& /*rRenderContext*/, const Rectangle& rU break; } case PT_Native: - Button::Paint(rUpdateArea); + Button::Paint(rRenderContext, rUpdateArea); break; } } |