summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/content.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/inc/content.hxx')
-rw-r--r--sw/source/uibase/inc/content.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/inc/content.hxx b/sw/source/uibase/inc/content.hxx
index feafa87f7b1e..cc8309feb225 100644
--- a/sw/source/uibase/inc/content.hxx
+++ b/sw/source/uibase/inc/content.hxx
@@ -113,7 +113,7 @@ public:
SwGraphicContent(const SwContentType* pCnt, const OUString& rName, const OUString& rLink, long nYPos)
: SwContent( pCnt, rName, nYPos ), sLink( rLink )
{}
- virtual ~SwGraphicContent();
+ virtual ~SwGraphicContent() override;
const OUString& GetLink() const {return sLink;}
};
@@ -125,7 +125,7 @@ public:
SwTOXBaseContent(const SwContentType* pCnt, const OUString& rName, long nYPos, const SwTOXBase& rBase)
: SwContent( pCnt, rName, nYPos ), pBase(&rBase)
{}
- virtual ~SwTOXBaseContent();
+ virtual ~SwTOXBaseContent() override;
const SwTOXBase* GetTOXBase() const {return pBase;}
};
@@ -155,7 +155,7 @@ protected:
static OUString RemoveNewline(const OUString&);
public:
SwContentType(SwWrtShell* pParent, ContentTypeId nType, sal_uInt8 nLevel );
- virtual ~SwContentType();
+ virtual ~SwContentType() override;
void Init(bool* pbInvalidateWindow = nullptr);