summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-09 08:55:13 +0200
committerNoel Grandin <noel@peralex.com>2015-06-09 10:06:57 +0200
commit81b954718f0cdac6873927e869b3e41f863562e7 (patch)
tree3e12a2cb35b263ea4d4e49b61af2ca8b733c5c28 /include/vcl
parentaba3c3a35a0afde16e42a94ae8cb2b1f589135db (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')
-rw-r--r--include/vcl/scheduler.hxx2
-rw-r--r--include/vcl/window.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/scheduler.hxx b/include/vcl/scheduler.hxx
index 5ce31e2db795..dfa1483132b2 100644
--- a/include/vcl/scheduler.hxx
+++ b/include/vcl/scheduler.hxx
@@ -73,7 +73,7 @@ public:
virtual void Invoke() = 0;
virtual void Start();
- virtual void Stop();
+ void Stop();
bool IsActive() const { return mbActive; }
void SetInActive() { mbActive = false; }
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
{