diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-10-22 17:24:48 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-10-22 17:24:48 +0200 |
commit | ad1119c4e978858cb9e4f47a23db587d792669af (patch) | |
tree | 25f39829f1fd1993d63442fed7d609221d463c5f | |
parent | d1da933407de3112fe766c2d05e8b6fd5464b4e2 (diff) |
no need for these methods to be virtual
Change-Id: I23413704b27474f6a59121bb1cbf24ee7484acd2
-rw-r--r-- | vcl/unx/generic/gdi/gdiimpl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/gdi/gdiimpl.hxx b/vcl/unx/generic/gdi/gdiimpl.hxx index 86990f5e0fbc..254eaa9ff6c6 100644 --- a/vcl/unx/generic/gdi/gdiimpl.hxx +++ b/vcl/unx/generic/gdi/gdiimpl.hxx @@ -84,9 +84,9 @@ private: ); XID GetXRenderPicture(); - virtual bool drawFilledTrapezoids( const ::basegfx::B2DTrapezoid*, int nTrapCount, double fTransparency ); + bool drawFilledTrapezoids( const ::basegfx::B2DTrapezoid*, int nTrapCount, double fTransparency ); - virtual long GetGraphicsHeight() const; + long GetGraphicsHeight() const; void drawMaskedBitmap( const SalTwoRect& rPosAry, const SalBitmap& rSalBitmap, |