summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-20 13:28:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-21 11:42:24 +0200
commitdc2598b7b45638847ac81c1b53bdbe43e5acef19 (patch)
treeb8b4efce05de0a873cf900619c48c17b4be1bb53 /rsc
parentc7de8233d15ed0c90fef6c49a54d60cf10119f58 (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>
Diffstat (limited to 'rsc')
-rw-r--r--rsc/inc/rsctop.hxx4
1 files changed, 2 insertions, 2 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 );