diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-09 08:55:13 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-09 10:06:57 +0200 |
commit | 81b954718f0cdac6873927e869b3e41f863562e7 (patch) | |
tree | 3e12a2cb35b263ea4d4e49b61af2ca8b733c5c28 /include/vcl/window.hxx | |
parent | aba3c3a35a0afde16e42a94ae8cb2b1f589135db (diff) |
loplugin:unnecessaryvirtuals
Improve the plugin a little.
Create a python script to process the output.
Run it again.
Change-Id: I05c21d8a21c8f4243af739c412fda0a521f9b5f0
Diffstat (limited to 'include/vcl/window.hxx')
-rw-r--r-- | include/vcl/window.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 0aa057d21828..a18debc6bbe7 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -837,7 +837,7 @@ protected: OutputDevice::DrawGradientWallpaper(nX, nY, nWidth, nHeight, rWallpaper); } - virtual void DrawGradientWallpaper(vcl::RenderContext& rRenderContext, long nX, long nY, + void DrawGradientWallpaper(vcl::RenderContext& rRenderContext, long nX, long nY, long nWidth, long nHeight, const Wallpaper& rWallpaper); virtual void ApplySettings(vcl::RenderContext& rRenderContext); @@ -863,7 +863,7 @@ public: virtual void PrePaint(vcl::RenderContext& rRenderContext); virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect); virtual void PostPaint(vcl::RenderContext& rRenderContext); - virtual void Erase(vcl::RenderContext& rRenderContext); + void Erase(vcl::RenderContext& rRenderContext); virtual void Erase() SAL_OVERRIDE { |