diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-20 13:28:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-04-21 11:42:24 +0200 |
commit | dc2598b7b45638847ac81c1b53bdbe43e5acef19 (patch) | |
tree | b8b4efce05de0a873cf900619c48c17b4be1bb53 | |
parent | c7de8233d15ed0c90fef6c49a54d60cf10119f58 (diff) |
loplugin:unnecessaryvirtual
Change-Id: Ibf396e5431d30cb62f086fa723b88c330c18961b
Reviewed-on: https://gerrit.libreoffice.org/36771
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | rsc/inc/rsctop.hxx | 4 | ||||
-rw-r--r-- | sc/source/ui/inc/scuiimoptdlg.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/rsc/inc/rsctop.hxx b/rsc/inc/rsctop.hxx index e9dab39dbf1c..76c96844cb73 100644 --- a/rsc/inc/rsctop.hxx +++ b/rsc/inc/rsctop.hxx @@ -151,13 +151,13 @@ public: sal_Int32 nValue ); // an assignment to a variable - virtual ERRTYPE SetNotConst( const RSCINST & rInst, Atom nId ); + ERRTYPE SetNotConst( const RSCINST & rInst, Atom nId ); virtual ERRTYPE SetString( const RSCINST & rInst, const char * pStr ); virtual ERRTYPE GetNumber( const RSCINST & rInst, sal_Int32 * pN ); - virtual ERRTYPE GetBool( const RSCINST & rInst, bool * pB ); + ERRTYPE GetBool( const RSCINST & rInst, bool * pB ); virtual ERRTYPE GetConst( const RSCINST & rInst, Atom * pH ); diff --git a/sc/source/ui/inc/scuiimoptdlg.hxx b/sc/source/ui/inc/scuiimoptdlg.hxx index 76fa5deb9693..7b0ec78987a1 100644 --- a/sc/source/ui/inc/scuiimoptdlg.hxx +++ b/sc/source/ui/inc/scuiimoptdlg.hxx @@ -39,8 +39,8 @@ public: virtual ~ScImportOptionsDlg() override; virtual void dispose() override; - virtual void GetImportOptions( ScImportOptions& rOptions ) const; - virtual void SaveImportOptions() const; + void GetImportOptions( ScImportOptions& rOptions ) const; + void SaveImportOptions() const; virtual OString GetScreenshotId() const override; private: |