diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-03 16:45:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-03 17:49:41 +0200 |
commit | 1b5dae25b0252ddf6021553f78b79115652c3b6b (patch) | |
tree | 874a167aa5ea94225de32693447ebb43396d41e3 /vcl | |
parent | 6ad127ead70cc0942c9876556dda7f525d7d01a0 (diff) |
loplugin:unnecessaryvirtual
Change-Id: Ib329e251ee405f60568a2fea6cb93f54a84063cd
Reviewed-on: https://gerrit.libreoffice.org/80144
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/unx/saldisp.hxx | 4 | ||||
-rw-r--r-- | vcl/inc/wizdlg.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/unx/saldisp.hxx b/vcl/inc/unx/saldisp.hxx index bc98120d474c..74d576c84782 100644 --- a/vcl/inc/unx/saldisp.hxx +++ b/vcl/inc/unx/saldisp.hxx @@ -347,9 +347,9 @@ public: XIC = nullptr ) const; Cursor GetPointer( PointerStyle ePointerStyle ); - virtual int CaptureMouse( SalFrame *pCapture ); + int CaptureMouse( SalFrame *pCapture ); - virtual ScreenData *initScreen( SalX11Screen nXScreen ) const; + ScreenData* initScreen( SalX11Screen nXScreen ) const; const ScreenData& getDataForScreen( SalX11Screen nXScreen ) const { if( nXScreen.getXScreen() >= m_aScreens.size() ) diff --git a/vcl/inc/wizdlg.hxx b/vcl/inc/wizdlg.hxx index b98d11db3d7f..aa181a6c0912 100644 --- a/vcl/inc/wizdlg.hxx +++ b/vcl/inc/wizdlg.hxx @@ -306,7 +306,7 @@ namespace vcl this is worth an assertion in a non-product build, and then an empty string is returned. */ - virtual OUString getStateDisplayName(WizardTypes::WizardState nState) const; + OUString getStateDisplayName(WizardTypes::WizardState nState) const; private: DECL_LINK( OnRoadmapItemSelected, LinkParamNone*, void ); |