summaryrefslogtreecommitdiff
path: root/sd/inc
diff options
context:
space:
mode:
Diffstat (limited to 'sd/inc')
-rw-r--r--sd/inc/CustomAnimationEffect.hxx2
-rw-r--r--sd/inc/Outliner.hxx2
-rw-r--r--sd/inc/anminfo.hxx2
-rw-r--r--sd/inc/drawdoc.hxx2
-rw-r--r--sd/inc/imapinfo.hxx2
-rw-r--r--sd/inc/pglink.hxx2
-rw-r--r--sd/inc/sdcgmfilter.hxx2
-rw-r--r--sd/inc/sdgrffilter.hxx2
-rw-r--r--sd/inc/sdhtmlfilter.hxx2
-rw-r--r--sd/inc/sdmod.hxx2
-rw-r--r--sd/inc/sdpage.hxx2
-rw-r--r--sd/inc/sdpptwrp.hxx2
-rw-r--r--sd/inc/sdundo.hxx2
-rw-r--r--sd/inc/sdxmlwrp.hxx2
-rw-r--r--sd/inc/stlfamily.hxx2
-rw-r--r--sd/inc/stlpool.hxx2
-rw-r--r--sd/inc/stlsheet.hxx2
-rw-r--r--sd/inc/textapi.hxx2
-rw-r--r--sd/inc/undo/undoobjects.hxx2
-rw-r--r--sd/inc/undoanim.hxx6
20 files changed, 22 insertions, 22 deletions
diff --git a/sd/inc/CustomAnimationEffect.hxx b/sd/inc/CustomAnimationEffect.hxx
index 3b8ffa1fe809..91c08dca1edf 100644
--- a/sd/inc/CustomAnimationEffect.hxx
+++ b/sd/inc/CustomAnimationEffect.hxx
@@ -373,7 +373,7 @@ class MainSequence : public EffectSequenceHelper, public ISequenceListener
public:
MainSequence();
MainSequence( const css::uno::Reference< css::animations::XAnimationNode >& xTimingRootNode );
- virtual ~MainSequence();
+ virtual ~MainSequence() override;
virtual css::uno::Reference< css::animations::XAnimationNode > getRootNode() override;
void reset( const css::uno::Reference< css::animations::XAnimationNode >& xTimingRootNode );
diff --git a/sd/inc/Outliner.hxx b/sd/inc/Outliner.hxx
index b6cfd7cb5d76..98249bd4d0e9 100644
--- a/sd/inc/Outliner.hxx
+++ b/sd/inc/Outliner.hxx
@@ -127,7 +127,7 @@ public:
editeng/outliner.hxx.
*/
Outliner( SdDrawDocument* pDoc, OutlinerMode nMode );
- virtual ~Outliner();
+ virtual ~Outliner() override;
/// Forbid copy construction and copy assignment
Outliner(const Outliner&) = delete;
Outliner& operator=(const Outliner&) = delete;
diff --git a/sd/inc/anminfo.hxx b/sd/inc/anminfo.hxx
index 96cb5a0a8860..1bce875044fc 100644
--- a/sd/inc/anminfo.hxx
+++ b/sd/inc/anminfo.hxx
@@ -64,7 +64,7 @@ public:
public:
SAL_DLLPRIVATE SdAnimationInfo(SdrObject& rObject);
SAL_DLLPRIVATE SdAnimationInfo(const SdAnimationInfo& rAnmInfo, SdrObject& rObject);
- SAL_DLLPRIVATE virtual ~SdAnimationInfo();
+ SAL_DLLPRIVATE virtual ~SdAnimationInfo() override;
SAL_DLLPRIVATE virtual SdrObjUserData* Clone(SdrObject* pObject) const override;
};
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx
index e2fae510966c..d23977dbb794 100644
--- a/sd/inc/drawdoc.hxx
+++ b/sd/inc/drawdoc.hxx
@@ -202,7 +202,7 @@ public:
SAL_DLLPRIVATE SdDrawDocument(DocumentType eType, SfxObjectShell* pDocSh);
- SAL_DLLPRIVATE virtual ~SdDrawDocument();
+ SAL_DLLPRIVATE virtual ~SdDrawDocument() override;
SAL_DLLPRIVATE SdDrawDocument* AllocSdDrawDocument() const;
SAL_DLLPRIVATE virtual SdrModel* AllocModel() const override; //forwards to AllocSdDrawDocument
diff --git a/sd/inc/imapinfo.hxx b/sd/inc/imapinfo.hxx
index 47db00b3ce27..b07d99a530ef 100644
--- a/sd/inc/imapinfo.hxx
+++ b/sd/inc/imapinfo.hxx
@@ -43,7 +43,7 @@ public:
SfxListener(),
aImageMap( rIMapInfo.aImageMap ) {};
- virtual ~SdIMapInfo() {};
+ virtual ~SdIMapInfo() override {};
virtual SdrObjUserData* Clone( SdrObject* ) const override { return new SdIMapInfo( *this ); }
diff --git a/sd/inc/pglink.hxx b/sd/inc/pglink.hxx
index 222a1f6168b4..a6344ca3ef7c 100644
--- a/sd/inc/pglink.hxx
+++ b/sd/inc/pglink.hxx
@@ -30,7 +30,7 @@ class SdPageLink : public ::sfx2::SvBaseLink
public:
SdPageLink(SdPage* pPg, const OUString& rFileName, const OUString& rBookmarkName);
- virtual ~SdPageLink();
+ virtual ~SdPageLink() override;
virtual void Closed() override;
virtual ::sfx2::SvBaseLink::UpdateResult DataChanged(
diff --git a/sd/inc/sdcgmfilter.hxx b/sd/inc/sdcgmfilter.hxx
index 550819b940df..44ba359aab17 100644
--- a/sd/inc/sdcgmfilter.hxx
+++ b/sd/inc/sdcgmfilter.hxx
@@ -29,7 +29,7 @@ public:
SdCGMFilter (
SfxMedium& rMedium,
::sd::DrawDocShell& rDocShell );
- virtual ~SdCGMFilter();
+ virtual ~SdCGMFilter() override;
bool Import();
bool Export() override;
diff --git a/sd/inc/sdgrffilter.hxx b/sd/inc/sdgrffilter.hxx
index c6287869e1f2..c725173c5dfa 100644
--- a/sd/inc/sdgrffilter.hxx
+++ b/sd/inc/sdgrffilter.hxx
@@ -31,7 +31,7 @@ class SdGRFFilter : public SdFilter
public:
SdGRFFilter ( SfxMedium& rMedium, ::sd::DrawDocShell& rDocShell );
- virtual ~SdGRFFilter();
+ virtual ~SdGRFFilter() override;
bool Import();
bool Export() override;
diff --git a/sd/inc/sdhtmlfilter.hxx b/sd/inc/sdhtmlfilter.hxx
index e696c8a786a3..86a7eb157fe8 100644
--- a/sd/inc/sdhtmlfilter.hxx
+++ b/sd/inc/sdhtmlfilter.hxx
@@ -30,7 +30,7 @@ public:
SdHTMLFilter (
SfxMedium& rMedium,
::sd::DrawDocShell& rDocShell);
- virtual ~SdHTMLFilter();
+ virtual ~SdHTMLFilter() override;
virtual bool Export() override;
};
diff --git a/sd/inc/sdmod.hxx b/sd/inc/sdmod.hxx
index cb5f2c3adbaa..27673c067355 100644
--- a/sd/inc/sdmod.hxx
+++ b/sd/inc/sdmod.hxx
@@ -86,7 +86,7 @@ private:
public:
SdModule(SfxObjectFactory* pDrawObjFact, SfxObjectFactory* pGraphicObjFact);
- virtual ~SdModule();
+ virtual ~SdModule() override;
SdTransferable* pTransferClip;
SdTransferable* pTransferDrag;
diff --git a/sd/inc/sdpage.hxx b/sd/inc/sdpage.hxx
index 2aa78aece79b..65d6cbda609b 100644
--- a/sd/inc/sdpage.hxx
+++ b/sd/inc/sdpage.hxx
@@ -152,7 +152,7 @@ protected:
public:
SdPage(SdDrawDocument& rNewDoc, bool bMasterPage=false);
- virtual ~SdPage();
+ virtual ~SdPage() override;
virtual SdrPage* Clone() const override;
virtual SdrPage* Clone(SdrModel* pNewModel) const override;
diff --git a/sd/inc/sdpptwrp.hxx b/sd/inc/sdpptwrp.hxx
index 3f74e7c11b2f..85ad2ffa5ad2 100644
--- a/sd/inc/sdpptwrp.hxx
+++ b/sd/inc/sdpptwrp.hxx
@@ -29,7 +29,7 @@ public:
SdPPTFilter (
SfxMedium& rMedium,
::sd::DrawDocShell& rDocShell);
- virtual ~SdPPTFilter();
+ virtual ~SdPPTFilter() override;
/// these methods are necessary for the export to PowerPoint
bool Import();
diff --git a/sd/inc/sdundo.hxx b/sd/inc/sdundo.hxx
index 661f354895ec..c7041399daac 100644
--- a/sd/inc/sdundo.hxx
+++ b/sd/inc/sdundo.hxx
@@ -29,7 +29,7 @@ class SD_DLLPUBLIC SdUndoAction : public SfxUndoAction
{
public:
SdUndoAction(SdDrawDocument* pSdDrawDocument);
- virtual ~SdUndoAction() {}
+ virtual ~SdUndoAction() override {}
void SetComment(const OUString& rStr) { maComment = rStr; }
virtual OUString GetComment() const override { return maComment; }
diff --git a/sd/inc/sdxmlwrp.hxx b/sd/inc/sdxmlwrp.hxx
index f3488f7d8c93..2cdcf89cd542 100644
--- a/sd/inc/sdxmlwrp.hxx
+++ b/sd/inc/sdxmlwrp.hxx
@@ -38,7 +38,7 @@ public:
::sd::DrawDocShell& rDocShell,
SdXMLFilterMode eFilterMode = SDXMLMODE_Normal,
sal_uLong nStoreVer = SOFFICE_FILEFORMAT_8 );
- virtual ~SdXMLFilter();
+ virtual ~SdXMLFilter() override;
bool Import( ErrCode& nError );
bool Export() override;
diff --git a/sd/inc/stlfamily.hxx b/sd/inc/stlfamily.hxx
index b11f8b5db1c9..a58106192924 100644
--- a/sd/inc/stlfamily.hxx
+++ b/sd/inc/stlfamily.hxx
@@ -52,7 +52,7 @@ public:
/// creates the presentation family for the given masterpage
SdStyleFamily( const rtl::Reference< SfxStyleSheetPool >& xPool, const SdPage* pMasterPage );
- virtual ~SdStyleFamily();
+ virtual ~SdStyleFamily() override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName() throw(css::uno::RuntimeException, std::exception) override;
diff --git a/sd/inc/stlpool.hxx b/sd/inc/stlpool.hxx
index 5a0832cd1f21..c1a8bcb72191 100644
--- a/sd/inc/stlpool.hxx
+++ b/sd/inc/stlpool.hxx
@@ -129,7 +129,7 @@ protected:
virtual SfxStyleSheetBase* Create(const OUString& rName, SfxStyleFamily eFamily, sal_uInt16 nMask) override;
using SfxStyleSheetPool::Create;
- virtual ~SdStyleSheetPool();
+ virtual ~SdStyleSheetPool() override;
void AddStyleFamily( const SdPage* pPage );
void RemoveStyleFamily( const SdPage* pPage );
diff --git a/sd/inc/stlsheet.hxx b/sd/inc/stlsheet.hxx
index ef8d9263d5d0..6b919e5229c8 100644
--- a/sd/inc/stlsheet.hxx
+++ b/sd/inc/stlsheet.hxx
@@ -133,7 +133,7 @@ protected:
virtual void Load (SvStream& rIn, sal_uInt16 nVersion) override;
virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) override;
- virtual ~SdStyleSheet();
+ virtual ~SdStyleSheet() override;
void throwIfDisposed() throw (css::uno::RuntimeException);
diff --git a/sd/inc/textapi.hxx b/sd/inc/textapi.hxx
index 466aad0eae38..d19d35547b11 100644
--- a/sd/inc/textapi.hxx
+++ b/sd/inc/textapi.hxx
@@ -40,7 +40,7 @@ class TextApiObject : public SvxUnoText
public:
static rtl::Reference< TextApiObject > create( SdDrawDocument* pDoc );
- virtual ~TextApiObject() throw();
+ virtual ~TextApiObject() throw() override;
void SAL_CALL dispose() throw(css::uno::RuntimeException);
diff --git a/sd/inc/undo/undoobjects.hxx b/sd/inc/undo/undoobjects.hxx
index bb45bbc5edfc..ee2d3bf16fcb 100644
--- a/sd/inc/undo/undoobjects.hxx
+++ b/sd/inc/undo/undoobjects.hxx
@@ -86,7 +86,7 @@ class UndoObjectSetText : public SdrUndoObjSetText
{
public:
UndoObjectSetText( SdrObject& rNewObj, sal_Int32 nText );
- virtual ~UndoObjectSetText();
+ virtual ~UndoObjectSetText() override;
virtual void Undo() override;
virtual void Redo() override;
diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx
index 699805637ff5..6270ad97c385 100644
--- a/sd/inc/undoanim.hxx
+++ b/sd/inc/undoanim.hxx
@@ -37,7 +37,7 @@ class UndoAnimation : public SdrUndoAction
{
public:
UndoAnimation( SdDrawDocument* pDoc, SdPage* pThePage );
- virtual ~UndoAnimation();
+ virtual ~UndoAnimation() override;
virtual void Undo() override;
virtual void Redo() override;
@@ -53,7 +53,7 @@ class UndoAnimationPath : public SdrUndoAction
{
public:
UndoAnimationPath( SdDrawDocument* pDoc, SdPage* pThePage, const css::uno::Reference< css::animations::XAnimationNode >& xNode );
- virtual ~UndoAnimationPath();
+ virtual ~UndoAnimationPath() override;
virtual void Undo() override;
virtual void Redo() override;
@@ -70,7 +70,7 @@ class UndoTransition : public SdUndoAction
{
public:
UndoTransition( SdDrawDocument* pDoc, SdPage* pThePage );
- virtual ~UndoTransition();
+ virtual ~UndoTransition() override;
virtual void Undo() override;
virtual void Redo() override;