summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-22 11:34:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-09-22 12:44:50 +0000
commitfd22e36ff53c448d1d7831b0ac66ecc29621ff9e (patch)
treeda2ac18341ac6cedbbea49cd032fb2f5345b1988 /include/vcl
parent5f8eb78d994e1329b9524a709480b71fa862ff6a (diff)
loplugin:unnecessaryvirtual
Change-Id: I7b1aa65a557f3855939ad8b183bba8ff656946f8 Reviewed-on: https://gerrit.libreoffice.org/29173 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/outdev.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index 1811e8b7f4e2..f03822f142a1 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -943,8 +943,8 @@ private:
public:
void DrawWallpaper( const Rectangle& rRect, const Wallpaper& rWallpaper );
- virtual void Erase();
- virtual void Erase( const Rectangle& rRect ) { DrawWallpaper( rRect, GetBackground() ); }
+ void Erase();
+ void Erase( const Rectangle& rRect ) { DrawWallpaper( rRect, GetBackground() ); }
protected:
void DrawGradientWallpaper( long nX, long nY, long nWidth, long nHeight, const Wallpaper& rWallpaper );
@@ -1414,12 +1414,12 @@ public:
const Image& rImage,
sal_uInt16 nStyle = 0)
*/
- virtual void DrawImage(
+ void DrawImage(
const Point& rPos,
const Image& rImage,
DrawImageFlags nStyle = DrawImageFlags::NONE );
- virtual void DrawImage(
+ void DrawImage(
const Point& rPos,
const Size& rSize,
const Image& rImage,