summaryrefslogtreecommitdiff
path: root/sd/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-20 12:38:10 +0200
committerNoel Grandin <noel@peralex.com>2015-01-26 08:42:28 +0200
commitb44cbb26efe1d0b0950b1e1613e131b506dc3876 (patch)
tree9b4d5d99e5dad0971079b997a02a6d96536709ca /sd/inc
parent26ad60aec69310fecd918f1c2e09056aa4782320 (diff)
new loplugin: change virtual methods to non-virtual
Where we can prove that the virtual method is never overriden. In the case of pure-virtual methods, we remove the method entirely. Sometimes this leads to entire methods and fields being eliminated. Change-Id: I138ef81c95f115dbd8c023a83cfc7e9d5d6d14ae
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/sdpage.hxx6
-rw-r--r--sd/inc/stlpool.hxx2
-rw-r--r--sd/inc/stlsheet.hxx2
-rw-r--r--sd/inc/textapi.hxx2
4 files changed, 6 insertions, 6 deletions
diff --git a/sd/inc/sdpage.hxx b/sd/inc/sdpage.hxx
index 9e1545101b44..0685cce9f1e7 100644
--- a/sd/inc/sdpage.hxx
+++ b/sd/inc/sdpage.hxx
@@ -269,9 +269,9 @@ public:
virtual OUString GetLayoutName() const SAL_OVERRIDE { return maLayoutName; }
void SetFileName(const OUString& aName) { maFileName = aName; }
- virtual OUString GetFileName() const { return maFileName; }
+ OUString GetFileName() const { return maFileName; }
void SetBookmarkName(const OUString& aName) { maBookmarkName = aName; }
- virtual OUString GetBookmarkName() const { return maBookmarkName; }
+ OUString GetBookmarkName() const { return maBookmarkName; }
SdPageLink* GetLink() { return mpPageLink; }
void ConnectLink();
@@ -327,7 +327,7 @@ public:
/** Set the name of the page and broadcast a model change.
*/
- virtual void SetName (const OUString& rName);
+ void SetName (const OUString& rName);
const sd::HeaderFooterSettings& getHeaderFooterSettings() const;
void setHeaderFooterSettings( const sd::HeaderFooterSettings& rNewSettings );
diff --git a/sd/inc/stlpool.hxx b/sd/inc/stlpool.hxx
index 15958987fe55..08245158bd7d 100644
--- a/sd/inc/stlpool.hxx
+++ b/sd/inc/stlpool.hxx
@@ -130,7 +130,7 @@ protected:
void CopySheets(SdStyleSheetPool& rSourcePool, SfxStyleFamily eFamily, SdStyleSheetVector& rCreatedSheets, OUString &rRenameSuffix );
virtual SfxStyleSheetBase* Create(const OUString& rName, SfxStyleFamily eFamily, sal_uInt16 nMask) SAL_OVERRIDE;
- virtual SfxStyleSheetBase* Create(const SdStyleSheet& rStyle);
+ SfxStyleSheetBase* Create(const SdStyleSheet& rStyle);
using SfxStyleSheetPool::Create;
virtual ~SdStyleSheetPool();
diff --git a/sd/inc/stlsheet.hxx b/sd/inc/stlsheet.hxx
index 6802c480bd98..cf3243a9f254 100644
--- a/sd/inc/stlsheet.hxx
+++ b/sd/inc/stlsheet.hxx
@@ -138,7 +138,7 @@ protected:
void throwIfDisposed() throw (::com::sun::star::uno::RuntimeException);
- virtual void disposing();
+ void disposing();
OUString msApiName;
rtl::Reference< SfxStyleSheetBasePool > mxPool;
diff --git a/sd/inc/textapi.hxx b/sd/inc/textapi.hxx
index 384d17105a0f..5844170f397b 100644
--- a/sd/inc/textapi.hxx
+++ b/sd/inc/textapi.hxx
@@ -42,7 +42,7 @@ public:
virtual ~TextApiObject() throw();
- virtual void SAL_CALL dispose() throw(::com::sun::star::uno::RuntimeException);
+ void SAL_CALL dispose() throw(::com::sun::star::uno::RuntimeException);
OutlinerParaObject* CreateText();
void SetText( OutlinerParaObject& rText );