diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 13:09:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 13:19:22 +0200 |
commit | 91dd2db17bd6cb9b357d1d69b187174e31eabef0 (patch) | |
tree | d634de3a1a6820904b5699c2136b79b1a5a807c7 /lotuswordpro | |
parent | 6f8ea7e89ea190b9462c945d55a3ad8777b2f3ef (diff) |
loplugin:override: No more need for the "MSVC dtor override" workaround
The issue of 362d4f0cd4e50111edfae9d30c90602c37ed65a2 "Explicitly mark
overriding destructors as 'virtual'" appears to no longer be a problem with
MSVC 2013.
(The little change in the rewriting code of compilerplugins/clang/override.cxx
was necessary to prevent an endless loop when adding "override" to
OOO_DLLPUBLIC_CHARTTOOLS virtual ~CloseableLifeTimeManager();
in chart2/source/inc/LifeTime.hxx, getting stuck in the leading
OOO_DLLPUBLIC_CHARTTOOLS macro. Can't remember what that
isAtEndOfImmediateMacroExpansion thing was originally necessary for, anyway.)
Change-Id: I534c634504d7216b9bb632c2775c04eaf27e927e
Diffstat (limited to 'lotuswordpro')
93 files changed, 211 insertions, 211 deletions
diff --git a/lotuswordpro/source/filter/LotusWordProImportFilter.hxx b/lotuswordpro/source/filter/LotusWordProImportFilter.hxx index ae7a60811a6e..f78aac523758 100644 --- a/lotuswordpro/source/filter/LotusWordProImportFilter.hxx +++ b/lotuswordpro/source/filter/LotusWordProImportFilter.hxx @@ -57,7 +57,7 @@ public: : mxContext( rxContext ) { } - virtual ~LotusWordProImportFilter() {} + virtual ~LotusWordProImportFilter() override {} // XFilter virtual sal_Bool SAL_CALL filter( const css::uno::Sequence< css::beans::PropertyValue >& aDescriptor ) diff --git a/lotuswordpro/source/filter/bento.hxx b/lotuswordpro/source/filter/bento.hxx index ef157e947307..382ca0967b7f 100644 --- a/lotuswordpro/source/filter/bento.hxx +++ b/lotuswordpro/source/filter/bento.hxx @@ -172,7 +172,7 @@ class LtcUtBenValueStream : public SvStream { public: explicit LtcUtBenValueStream(pCBenValue pValue); - virtual ~LtcUtBenValueStream(); + virtual ~LtcUtBenValueStream() override; public: // Overridden methods diff --git a/lotuswordpro/source/filter/lwpbackgroundoverride.hxx b/lotuswordpro/source/filter/lwpbackgroundoverride.hxx index 3468b73d2ee7..fb38be6b22f2 100644 --- a/lotuswordpro/source/filter/lwpbackgroundoverride.hxx +++ b/lotuswordpro/source/filter/lwpbackgroundoverride.hxx @@ -65,7 +65,7 @@ class LwpBackgroundOverride : public LwpOverride public: LwpBackgroundOverride(){} - virtual ~LwpBackgroundOverride(){} + virtual ~LwpBackgroundOverride() override {} virtual LwpBackgroundOverride* clone() const override; diff --git a/lotuswordpro/source/filter/lwpbreaksoverride.hxx b/lotuswordpro/source/filter/lwpbreaksoverride.hxx index 3a0098ad1c8e..c1808c1c43c5 100644 --- a/lotuswordpro/source/filter/lwpbreaksoverride.hxx +++ b/lotuswordpro/source/filter/lwpbreaksoverride.hxx @@ -69,7 +69,7 @@ class LwpBreaksOverride : public LwpOverride public: LwpBreaksOverride(); - virtual ~LwpBreaksOverride(); + virtual ~LwpBreaksOverride() override; virtual LwpBreaksOverride* clone() const override; diff --git a/lotuswordpro/source/filter/lwpcelllayout.hxx b/lotuswordpro/source/filter/lwpcelllayout.hxx index 7e4b7cc29f55..f1d87609f49e 100644 --- a/lotuswordpro/source/filter/lwpcelllayout.hxx +++ b/lotuswordpro/source/filter/lwpcelllayout.hxx @@ -87,7 +87,7 @@ class LwpCellLayout : public LwpMiddleLayout { public: LwpCellLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpCellLayout(); + virtual ~LwpCellLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_CELL_LAYOUT;} virtual XFCell* ConvertCell(LwpObjectID aTableID, sal_uInt16 nRow, sal_uInt16 nCol); sal_uInt16 GetRowID(){return crowid;} @@ -144,7 +144,7 @@ class LwpHiddenCellLayout : public LwpCellLayout { public: LwpHiddenCellLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpHiddenCellLayout(); + virtual ~LwpHiddenCellLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_HIDDEN_CELL_LAYOUT;} virtual void Parse(IXFStream* pOutputStream) override; virtual XFCell* ConvertCell(LwpObjectID aTableID, sal_uInt16 nRow, sal_uInt16 nCol) override; @@ -163,7 +163,7 @@ class LwpConnectedCellLayout : public LwpCellLayout { public: LwpConnectedCellLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpConnectedCellLayout(); + virtual ~LwpConnectedCellLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_CONNECTED_CELL_LAYOUT;} virtual void Parse(IXFStream* pOutputStream) override; virtual XFCell* ConvertCell(LwpObjectID aTableID, sal_uInt16 nRow, sal_uInt16 nCol) override; @@ -189,7 +189,7 @@ class LwpParallelColumnsBlock : public LwpCellLayout { public: LwpParallelColumnsBlock(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpParallelColumnsBlock(); + virtual ~LwpParallelColumnsBlock() override; protected: void Read() override; diff --git a/lotuswordpro/source/filter/lwpcharacterstyle.hxx b/lotuswordpro/source/filter/lwpcharacterstyle.hxx index eb8a84a8e71f..9c9a61048fc6 100644 --- a/lotuswordpro/source/filter/lwpcharacterstyle.hxx +++ b/lotuswordpro/source/filter/lwpcharacterstyle.hxx @@ -75,7 +75,7 @@ class LwpTextStyle : public LwpDLNFPVList public: LwpTextStyle(LwpObjectHeader& objHdr, LwpSvStream* pStrm); - virtual ~LwpTextStyle(); + virtual ~LwpTextStyle() override; inline sal_uInt32 GetFinalFontID() const; diff --git a/lotuswordpro/source/filter/lwpcharborderoverride.hxx b/lotuswordpro/source/filter/lwpcharborderoverride.hxx index e67ef1a7fad7..08c2c164809e 100644 --- a/lotuswordpro/source/filter/lwpcharborderoverride.hxx +++ b/lotuswordpro/source/filter/lwpcharborderoverride.hxx @@ -70,7 +70,7 @@ class LwpCharacterBorderOverride : public LwpOverride public: LwpCharacterBorderOverride(); - virtual ~LwpCharacterBorderOverride(); + virtual ~LwpCharacterBorderOverride() override; virtual LwpCharacterBorderOverride* clone() const override; diff --git a/lotuswordpro/source/filter/lwpcontent.hxx b/lotuswordpro/source/filter/lwpcontent.hxx index dfdd474e4cdc..7c357fc17e00 100644 --- a/lotuswordpro/source/filter/lwpcontent.hxx +++ b/lotuswordpro/source/filter/lwpcontent.hxx @@ -74,7 +74,7 @@ class LwpContent : public LwpDLNFVList { public: LwpContent(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpContent(){} + virtual ~LwpContent() override {} protected: LwpAssociatedLayouts m_LayoutsWithMe; sal_uInt16 m_nFlags; @@ -147,7 +147,7 @@ class LwpHeadContent : public LwpContent { public: LwpHeadContent(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpHeadContent(){} + virtual ~LwpHeadContent() override {} protected: void Read() override; }; diff --git a/lotuswordpro/source/filter/lwpdivinfo.hxx b/lotuswordpro/source/filter/lwpdivinfo.hxx index 1a01e23a3a04..fb1adca2ae4a 100644 --- a/lotuswordpro/source/filter/lwpdivinfo.hxx +++ b/lotuswordpro/source/filter/lwpdivinfo.hxx @@ -89,7 +89,7 @@ public: protected: void Read() override; private: - virtual ~LwpDivInfo(); + virtual ~LwpDivInfo() override; LwpObjectID m_ParentID; LwpAtomHolder m_Name; diff --git a/lotuswordpro/source/filter/lwpdivopts.hxx b/lotuswordpro/source/filter/lwpdivopts.hxx index d46b3029cfe2..d2d3fa8c1efa 100644 --- a/lotuswordpro/source/filter/lwpdivopts.hxx +++ b/lotuswordpro/source/filter/lwpdivopts.hxx @@ -107,7 +107,7 @@ public: protected: void Read() override; private: - virtual ~LwpDivisionOptions(); + virtual ~LwpDivisionOptions() override; LwpHyphenOptions m_HyphOpts; sal_uInt16 m_nOptionFlag; diff --git a/lotuswordpro/source/filter/lwpdlvlist.hxx b/lotuswordpro/source/filter/lwpdlvlist.hxx index 4ce8ecc8659b..2c65eeeab83f 100644 --- a/lotuswordpro/source/filter/lwpdlvlist.hxx +++ b/lotuswordpro/source/filter/lwpdlvlist.hxx @@ -72,7 +72,7 @@ class LwpDLVList : public LwpObject public: LwpDLVList(LwpObjectHeader &objHdr, LwpSvStream* pStrm); protected: - virtual ~LwpDLVList(){} + virtual ~LwpDLVList() override {} LwpObjectID m_ListPrevious; LwpObjectID m_ListNext; @@ -91,7 +91,7 @@ class LwpDLNFVList : public LwpDLVList public: LwpDLNFVList(LwpObjectHeader &objHdr, LwpSvStream* pStrm); protected: - virtual ~LwpDLNFVList(){} + virtual ~LwpDLNFVList() override {} LwpObjectID m_ChildHead; LwpObjectID m_ChildTail; @@ -116,7 +116,7 @@ class LwpDLNFPVList : public LwpDLNFVList { public: LwpDLNFPVList(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpDLNFPVList(); + virtual ~LwpDLNFPVList() override; protected: bool m_bHasProperties; LwpPropList* m_pPropList; diff --git a/lotuswordpro/source/filter/lwpdoc.hxx b/lotuswordpro/source/filter/lwpdoc.hxx index 5fa33f4108b1..6b7b8b5b717a 100644 --- a/lotuswordpro/source/filter/lwpdoc.hxx +++ b/lotuswordpro/source/filter/lwpdoc.hxx @@ -80,7 +80,7 @@ class LwpDocument : public LwpDLNFPVList { public: LwpDocument(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpDocument(); + virtual ~LwpDocument() override; private: LwpFoundry* m_pOwnedFoundry; @@ -226,7 +226,7 @@ class LwpDocSock : public LwpDLNFVList { public: LwpDocSock(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpDocSock(){} + virtual ~LwpDocSock() override {} private: LwpObjectID m_Doc; protected: diff --git a/lotuswordpro/source/filter/lwpdocdata.hxx b/lotuswordpro/source/filter/lwpdocdata.hxx index 5abf214655d2..50f69066ec99 100644 --- a/lotuswordpro/source/filter/lwpdocdata.hxx +++ b/lotuswordpro/source/filter/lwpdocdata.hxx @@ -158,7 +158,7 @@ class LwpDocData : public LwpObject public: LwpDocData(LwpObjectHeader &objHdr, LwpSvStream* pStrm); private: - virtual ~LwpDocData(); + virtual ~LwpDocData() override; LwpDocOptions m_DocOptions; LwpDocInfo m_DocInfo; diff --git a/lotuswordpro/source/filter/lwpdrawobj.hxx b/lotuswordpro/source/filter/lwpdrawobj.hxx index 15fcb0e6f61c..28746ca44f34 100644 --- a/lotuswordpro/source/filter/lwpdrawobj.hxx +++ b/lotuswordpro/source/filter/lwpdrawobj.hxx @@ -149,7 +149,7 @@ class LwpDrawGroup : public LwpDrawObj { public: explicit LwpDrawGroup(SvStream* pStream) : LwpDrawObj(pStream) {} - virtual ~LwpDrawGroup() {} + virtual ~LwpDrawGroup() override {} protected: virtual void Read() override {} @@ -172,7 +172,7 @@ private: public: LwpDrawLine(SvStream * pStream, DrawingOffsetAndScale* pTransData); - virtual ~LwpDrawLine() {} + virtual ~LwpDrawLine() override {} protected: virtual void Read() override; @@ -193,7 +193,7 @@ private: public: LwpDrawPolyLine(SvStream * pStream, DrawingOffsetAndScale* pTransData); - virtual ~LwpDrawPolyLine(); + virtual ~LwpDrawPolyLine() override; protected: virtual void Read() override; @@ -214,7 +214,7 @@ private: public: LwpDrawPolygon(SvStream * pStream, DrawingOffsetAndScale* pTransData); - virtual ~LwpDrawPolygon(); + virtual ~LwpDrawPolygon() override; protected: virtual void Read() override; @@ -234,7 +234,7 @@ private: public: LwpDrawRectangle(SvStream* pStream, DrawingOffsetAndScale* pTransData); - virtual ~LwpDrawRectangle(){} + virtual ~LwpDrawRectangle() override {} protected: virtual void Read() override; @@ -257,7 +257,7 @@ private: public: LwpDrawEllipse(SvStream * pStream, DrawingOffsetAndScale* pTransData); - virtual ~LwpDrawEllipse(){} + virtual ~LwpDrawEllipse() override {} protected: virtual void Read() override; @@ -278,7 +278,7 @@ private: public: LwpDrawArc(SvStream * pStream, DrawingOffsetAndScale* pTransData); - virtual ~LwpDrawArc() {} + virtual ~LwpDrawArc() override {} protected: virtual void Read() override; @@ -300,7 +300,7 @@ private: public: explicit LwpDrawTextBox(SvStream* pStream); - virtual ~LwpDrawTextBox(); + virtual ~LwpDrawTextBox() override; static void SetFontStyle(rtl::Reference<XFFont> const & pFont, SdwTextBoxRecord* pRec); protected: @@ -326,7 +326,7 @@ private: public: LwpDrawTextArt(SvStream* pStream, DrawingOffsetAndScale* pTransData); - virtual ~LwpDrawTextArt(); + virtual ~LwpDrawTextArt() override; protected: virtual void Read() override; @@ -343,7 +343,7 @@ class LwpDrawMetafile : public LwpDrawObj { public: explicit LwpDrawMetafile(SvStream* pStream); - virtual ~LwpDrawMetafile() {} + virtual ~LwpDrawMetafile() override {} protected: virtual void Read() override; @@ -366,7 +366,7 @@ private: sal_uInt8* m_pImageData; public: explicit LwpDrawBitmap(SvStream* pStream); - virtual ~LwpDrawBitmap(); + virtual ~LwpDrawBitmap() override; protected: virtual void Read() override; diff --git a/lotuswordpro/source/filter/lwpfnlayout.hxx b/lotuswordpro/source/filter/lwpfnlayout.hxx index ec0af1e58cee..e0a7c7980c87 100644 --- a/lotuswordpro/source/filter/lwpfnlayout.hxx +++ b/lotuswordpro/source/filter/lwpfnlayout.hxx @@ -71,7 +71,7 @@ class LwpFootnoteLayout : public LwpTableLayout { public: LwpFootnoteLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpFootnoteLayout(); + virtual ~LwpFootnoteLayout() override; void RegisterStyle() override; virtual void XFConvert(XFContentContainer * pCont) override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_FOOTNOTE_LAYOUT;} @@ -87,7 +87,7 @@ class LwpFnRowLayout : public LwpRowLayout { public: LwpFnRowLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpFnRowLayout(); + virtual ~LwpFnRowLayout() override; void RegisterStyle() override; virtual void XFConvert(XFContentContainer * pCont) override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_FOOTNOTE_ROW_LAYOUT;} @@ -103,7 +103,7 @@ class LwpFnCellLayout : public LwpCellLayout { public: LwpFnCellLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpFnCellLayout(); + virtual ~LwpFnCellLayout() override; void RegisterStyle() override; virtual void XFConvert(XFContentContainer * pCont) override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_FOOTNOTE_CELL_LAYOUT;} @@ -119,7 +119,7 @@ class LwpEndnoteLayout : public LwpTableLayout { public: LwpEndnoteLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpEndnoteLayout(); + virtual ~LwpEndnoteLayout() override; void RegisterStyle() override; virtual void XFConvert(XFContentContainer * pCont) override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_ENDNOTE_LAYOUT;} @@ -135,7 +135,7 @@ class LwpEnSuperTableLayout : public LwpSuperTableLayout { public: LwpEnSuperTableLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpEnSuperTableLayout(); + virtual ~LwpEnSuperTableLayout() override; void RegisterStyle() override; void XFConvert(XFContentContainer* pCont) override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_ENDNOTE_SUPERTABLE_LAYOUT;} @@ -152,7 +152,7 @@ class LwpFnSuperTableLayout : public LwpEnSuperTableLayout { public: LwpFnSuperTableLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpFnSuperTableLayout(); + virtual ~LwpFnSuperTableLayout() override; void RegisterStyle() override; void XFConvert(XFContentContainer* pCont) override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_FOOTNOTE_SUPERTABLE_LAYOUT;} @@ -169,7 +169,7 @@ class LwpContFromLayout : public LwpPlacableLayout { public: LwpContFromLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpContFromLayout(); + virtual ~LwpContFromLayout() override; void RegisterStyle() override; void XFConvert(XFContentContainer* pCont) override; protected: @@ -184,7 +184,7 @@ class LwpContOnLayout : public LwpPlacableLayout { public: LwpContOnLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpContOnLayout(); + virtual ~LwpContOnLayout() override; void RegisterStyle() override; void XFConvert(XFContentContainer* pCont) override; protected: diff --git a/lotuswordpro/source/filter/lwpfootnote.hxx b/lotuswordpro/source/filter/lwpfootnote.hxx index d01c52b1ac8b..54047f5c3763 100644 --- a/lotuswordpro/source/filter/lwpfootnote.hxx +++ b/lotuswordpro/source/filter/lwpfootnote.hxx @@ -103,7 +103,7 @@ class LwpFribFootnote: public LwpFrib public: explicit LwpFribFootnote(LwpPara* pPara ); - virtual ~LwpFribFootnote(){} + virtual ~LwpFribFootnote() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; void RegisterNewStyle(); void XFConvert(XFContentContainer* pCont); @@ -124,7 +124,7 @@ class LwpFootnote : public LwpOrderedObject { public: LwpFootnote(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpFootnote(); + virtual ~LwpFootnote() override; void RegisterStyle() override; void XFConvert(XFContentContainer * pCont) override; protected: @@ -152,7 +152,7 @@ class LwpFootnoteTable : public LwpTable { public: LwpFootnoteTable(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpFootnoteTable(){} + virtual ~LwpFootnoteTable() override {} protected: void Read() override; }; @@ -245,7 +245,7 @@ protected: void RegisterFootnoteStyle(); void RegisterEndnoteStyle(); private: - virtual ~LwpFootnoteOptions(); + virtual ~LwpFootnoteOptions() override; sal_uInt16 m_nFlag; LwpFootnoteNumberOptions m_FootnoteNumbering; diff --git a/lotuswordpro/source/filter/lwpframelayout.hxx b/lotuswordpro/source/filter/lwpframelayout.hxx index 505e0cb8fe5b..603f0d33d15c 100644 --- a/lotuswordpro/source/filter/lwpframelayout.hxx +++ b/lotuswordpro/source/filter/lwpframelayout.hxx @@ -123,7 +123,7 @@ class LwpFrameLayout: public LwpPlacableLayout { public: LwpFrameLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpFrameLayout(); + virtual ~LwpFrameLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_FRAME_LAYOUT;} virtual void RegisterStyle() override; virtual void XFConvert(XFContentContainer* pCont) override; @@ -151,7 +151,7 @@ class LwpGroupLayout: public LwpPlacableLayout { public: LwpGroupLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpGroupLayout(); + virtual ~LwpGroupLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_GROUP_LAYOUT;} virtual void RegisterStyle() override; virtual void XFConvert(XFContentContainer* pCont) override; @@ -171,7 +171,7 @@ class LwpGroupFrame: public LwpContent { public: LwpGroupFrame(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpGroupFrame(); + virtual ~LwpGroupFrame() override; virtual void RegisterStyle() override; virtual void XFConvert(XFContentContainer* pCont) override; protected: @@ -184,7 +184,7 @@ class LwpDropcapLayout : public LwpFrameLayout { public: LwpDropcapLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpDropcapLayout(){} + virtual ~LwpDropcapLayout() override {} virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_DROPCAP_LAYOUT;} virtual void Parse(IXFStream* pOutputStream) override; virtual void XFConvert(XFContentContainer* pCont) override; @@ -205,7 +205,7 @@ class LwpRubyLayout : public LwpFrameLayout { public: LwpRubyLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpRubyLayout(){} + virtual ~LwpRubyLayout() override {} LwpRubyMarker* GetMarker(); void ConvertContentText(); LwpStory* GetContentStory(); diff --git a/lotuswordpro/source/filter/lwpfribbreaks.hxx b/lotuswordpro/source/filter/lwpfribbreaks.hxx index e1766d7726cd..413a61f9a95d 100644 --- a/lotuswordpro/source/filter/lwpfribbreaks.hxx +++ b/lotuswordpro/source/filter/lwpfribbreaks.hxx @@ -70,7 +70,7 @@ class LwpFribPageBreak: public LwpFrib { public: explicit LwpFribPageBreak( LwpPara* pPara ); - virtual ~LwpFribPageBreak(); + virtual ~LwpFribPageBreak() override; void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; void RegisterBreakStyle(LwpPara* pPara); void ParseLayout(); @@ -88,14 +88,14 @@ class LwpFribLineBreak: public LwpFrib { public: explicit LwpFribLineBreak( LwpPara* pPara ) : LwpFrib(pPara){} - virtual ~LwpFribLineBreak(){} + virtual ~LwpFribLineBreak() override {} }; class LwpFribColumnBreak: public LwpFrib { public: explicit LwpFribColumnBreak( LwpPara* pPara ) : LwpFrib(pPara){} - virtual ~LwpFribColumnBreak(){} + virtual ~LwpFribColumnBreak() override {} void RegisterBreakStyle(LwpPara* pPara); }; diff --git a/lotuswordpro/source/filter/lwpfribframe.hxx b/lotuswordpro/source/filter/lwpfribframe.hxx index d30a9541dd40..5698332533a3 100644 --- a/lotuswordpro/source/filter/lwpfribframe.hxx +++ b/lotuswordpro/source/filter/lwpfribframe.hxx @@ -70,7 +70,7 @@ class LwpFribFrame : public LwpFrib { public: explicit LwpFribFrame( LwpPara* pPara) : LwpFrib(pPara){} - virtual ~LwpFribFrame(){} + virtual ~LwpFribFrame() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; rtl::Reference<LwpObject> GetLayout(); void RegisterStyle(LwpFoundry* pFoundry) override; @@ -84,7 +84,7 @@ class LwpFribRubyFrame : public LwpFrib { public: explicit LwpFribRubyFrame(LwpPara* pPara) : LwpFrib(pPara){} - virtual ~LwpFribRubyFrame(){} + virtual ~LwpFribRubyFrame() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; LwpRubyLayout* GetLayout(); void RegisterStyle(LwpFoundry* pFoundry) override; diff --git a/lotuswordpro/source/filter/lwpfribmark.hxx b/lotuswordpro/source/filter/lwpfribmark.hxx index 226e57f0c460..c9803a7b3989 100644 --- a/lotuswordpro/source/filter/lwpfribmark.hxx +++ b/lotuswordpro/source/filter/lwpfribmark.hxx @@ -74,7 +74,7 @@ public: : LwpFrib(pPara) , m_nType(0) {} - virtual ~LwpFribCHBlock(){} + virtual ~LwpFribCHBlock() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; LwpCHBlkMarker* GetMarker(); sal_uInt8 GetType(){return m_nType;} @@ -89,7 +89,7 @@ class LwpFribBookMark : public LwpFrib { public: explicit LwpFribBookMark( LwpPara* pPara ); - virtual ~LwpFribBookMark(){} + virtual ~LwpFribBookMark() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; const LwpObjectID& GetMarkerID(){return m_objMarker;} sal_uInt8 GetType(){return m_nType;} @@ -107,7 +107,7 @@ class LwpFribField : public LwpFrib { public: explicit LwpFribField( LwpPara* pPara ); - virtual ~LwpFribField(){} + virtual ~LwpFribField() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; LwpFieldMark* GetMarker(); sal_uInt8 GetType(){return m_nType;} @@ -148,7 +148,7 @@ class LwpFribRubyMarker : public LwpFrib { public: explicit LwpFribRubyMarker( LwpPara* pPara ); - virtual ~LwpFribRubyMarker(){} + virtual ~LwpFribRubyMarker() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; LwpRubyMarker* GetMarker(); sal_uInt8 GetType(){return m_nType;} diff --git a/lotuswordpro/source/filter/lwpfribsection.hxx b/lotuswordpro/source/filter/lwpfribsection.hxx index 6228d87e60e0..aa6c0f88cfe2 100644 --- a/lotuswordpro/source/filter/lwpfribsection.hxx +++ b/lotuswordpro/source/filter/lwpfribsection.hxx @@ -108,7 +108,7 @@ class LwpFribSection: public LwpFrib { public: explicit LwpFribSection(LwpPara* pPara ); - virtual ~LwpFribSection(); + virtual ~LwpFribSection() override; void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; LwpSection * GetSection(); void RegisterSectionStyle(); diff --git a/lotuswordpro/source/filter/lwpfribtable.hxx b/lotuswordpro/source/filter/lwpfribtable.hxx index 0e83c0e65442..dd72e7508076 100644 --- a/lotuswordpro/source/filter/lwpfribtable.hxx +++ b/lotuswordpro/source/filter/lwpfribtable.hxx @@ -63,7 +63,7 @@ class LwpFribTable : public LwpFrib { public: explicit LwpFribTable( LwpPara* pPara ) : LwpFrib(pPara){} - virtual ~LwpFribTable(){} + virtual ~LwpFribTable() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; LwpSuperTableLayout* GetSuperTable(); void RegisterNewStyle(); diff --git a/lotuswordpro/source/filter/lwpfribtext.hxx b/lotuswordpro/source/filter/lwpfribtext.hxx index c4227dafffa9..138ef9a22e76 100644 --- a/lotuswordpro/source/filter/lwpfribtext.hxx +++ b/lotuswordpro/source/filter/lwpfribtext.hxx @@ -67,7 +67,7 @@ class LwpFribText : public LwpFrib { public: LwpFribText( LwpPara* pPara, bool bNoUnicode=false); - virtual ~LwpFribText(){} + virtual ~LwpFribText() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; void XFConvert(XFContentContainer* pXFPara,LwpStory* pStory); private: @@ -81,14 +81,14 @@ class LwpFribHardSpace : public LwpFrib { public: explicit LwpFribHardSpace( LwpPara* pPara ) : LwpFrib(pPara){} - virtual ~LwpFribHardSpace(){} + virtual ~LwpFribHardSpace() override {} }; class LwpFribSoftHyphen : public LwpFrib { public: explicit LwpFribSoftHyphen( LwpPara* pPara ) : LwpFrib(pPara){} - virtual ~LwpFribSoftHyphen(){} + virtual ~LwpFribSoftHyphen() override {} }; class LwpFribParaNumber : public LwpFrib @@ -128,7 +128,7 @@ class LwpFribDocVar : public LwpFrib public: explicit LwpFribDocVar( LwpPara* pPara ); - virtual ~LwpFribDocVar(); + virtual ~LwpFribDocVar() override; void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; @@ -179,14 +179,14 @@ class LwpFribTab : public LwpFrib { public: explicit LwpFribTab( LwpPara* pPara ) : LwpFrib(pPara){} - virtual ~LwpFribTab(){} + virtual ~LwpFribTab() override {} }; class LwpFribUnicode: public LwpFrib { public: explicit LwpFribUnicode( LwpPara* pPara ) : LwpFrib(pPara){} - virtual ~LwpFribUnicode(){} + virtual ~LwpFribUnicode() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; void XFConvert(XFContentContainer* pXFPara,LwpStory* pStory); private: @@ -200,7 +200,7 @@ class LwpFribPageNumber : public LwpFrib public: explicit LwpFribPageNumber(LwpPara* pPara) : LwpFrib(pPara), m_nNumStyle(0), m_nStartNum(1), m_nStartOnPage(1), m_nFlag(0){} - virtual ~LwpFribPageNumber(){} + virtual ~LwpFribPageNumber() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; void XFConvert(XFContentContainer* pXFPara); private: diff --git a/lotuswordpro/source/filter/lwpgrfobj.hxx b/lotuswordpro/source/filter/lwpgrfobj.hxx index fd03b9595e90..5669b1d3bc6c 100644 --- a/lotuswordpro/source/filter/lwpgrfobj.hxx +++ b/lotuswordpro/source/filter/lwpgrfobj.hxx @@ -92,7 +92,7 @@ class LwpGraphicObject : public LwpGraphicOleObject { public: LwpGraphicObject(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpGraphicObject(); + virtual ~LwpGraphicObject() override; private: unsigned char m_sDataFormat[AFID_MAX_FILE_FORMAT_SIZE]; unsigned char m_sServerContextFormat[AFID_MAX_CONTEXT_FORMAT_SIZE]; diff --git a/lotuswordpro/source/filter/lwpholder.hxx b/lotuswordpro/source/filter/lwpholder.hxx index 7cf3b8f2ceb2..a5df323bdefb 100644 --- a/lotuswordpro/source/filter/lwpholder.hxx +++ b/lotuswordpro/source/filter/lwpholder.hxx @@ -74,7 +74,7 @@ public: void Read() override; LwpObjectID& GetHeadID() { return m_DLVHead;} private: - virtual ~LwpDLVListHeadHolder(){} + virtual ~LwpDLVListHeadHolder() override {} LwpObjectID m_DLVHead; }; @@ -92,7 +92,7 @@ public: protected: LwpDLVListHeadTail m_HeadTail; private: - virtual ~LwpDLVListHeadTailHolder(){} + virtual ~LwpDLVListHeadTailHolder() override {} }; /** * @brief LwpObjectHolder, which is LwpDLVList, contains an id to an object @@ -105,7 +105,7 @@ public: void Read() override; LwpObjectID& GetObject() { return m_Object; } protected: - virtual ~LwpObjectHolder(){} + virtual ~LwpObjectHolder() override {} LwpObjectID m_Object; }; @@ -123,7 +123,7 @@ public: protected: LwpDLVListHeadTail m_HeadTail; private: - virtual ~LwpListList(){} + virtual ~LwpListList() override {} }; #endif diff --git a/lotuswordpro/source/filter/lwplayout.hxx b/lotuswordpro/source/filter/lwplayout.hxx index e2db72f0a505..54ec8ebbe469 100644 --- a/lotuswordpro/source/filter/lwplayout.hxx +++ b/lotuswordpro/source/filter/lwplayout.hxx @@ -95,7 +95,7 @@ class LwpVirtualLayout : public LwpDLNFPVList { public: LwpVirtualLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpVirtualLayout(){} + virtual ~LwpVirtualLayout() override {} inline virtual sal_uInt16 GetNumCols(){return 1;} virtual double GetColWidth(sal_uInt16 nIndex); virtual double GetColGap(sal_uInt16 nIndex); @@ -294,7 +294,7 @@ class LwpHeadLayout : public LwpVirtualLayout { public: LwpHeadLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpHeadLayout(){} + virtual ~LwpHeadLayout() override {} void RegisterStyle() override; rtl::Reference<LwpVirtualLayout> FindEnSuperTableLayout(); protected: @@ -332,7 +332,7 @@ class LwpMiddleLayout : public LwpVirtualLayout { public: LwpMiddleLayout( LwpObjectHeader &objHdr, LwpSvStream* pStrm ); - virtual ~LwpMiddleLayout(); + virtual ~LwpMiddleLayout() override; LwpLayoutGeometry* GetGeometry() { if (m_bGettingGeometry) @@ -420,7 +420,7 @@ class LwpLayout : public LwpMiddleLayout { public: LwpLayout( LwpObjectHeader &objHdr, LwpSvStream* pStrm ); - virtual ~LwpLayout(); + virtual ~LwpLayout() override; XFColumns* GetXFColumns(); XFColumnSep* GetColumnSep(); LwpShadow* GetShadow(); @@ -465,7 +465,7 @@ class LwpPlacableLayout : public LwpLayout { public: LwpPlacableLayout( LwpObjectHeader &objHdr, LwpSvStream* pStrm ); - virtual ~LwpPlacableLayout(); + virtual ~LwpPlacableLayout() override; sal_uInt8 GetWrapType(); LwpLayoutRelativity* GetRelativityPiece(); virtual sal_uInt8 GetRelativeType() override; diff --git a/lotuswordpro/source/filter/lwplaypiece.hxx b/lotuswordpro/source/filter/lwplaypiece.hxx index 1fe7bb43c4ff..76ea400d1df3 100644 --- a/lotuswordpro/source/filter/lwplaypiece.hxx +++ b/lotuswordpro/source/filter/lwplaypiece.hxx @@ -95,7 +95,7 @@ protected: LwpRotor m_ContainerRotor; sal_uInt8 m_ContentOrientation; private: - virtual ~LwpLayoutGeometry(); + virtual ~LwpLayoutGeometry() override; }; class LwpLayoutScale : public LwpVirtualPiece @@ -124,7 +124,7 @@ protected: LwpPoint m_Offset; sal_uInt16 m_nPlacement; private: - virtual ~LwpLayoutScale(); + virtual ~LwpLayoutScale() override; }; #include "lwpmargins.hxx" @@ -143,7 +143,7 @@ protected: LwpMargins m_ExtMargins; LwpMargins m_ExtraMargins; private: - virtual ~LwpLayoutMargins(); + virtual ~LwpLayoutMargins() override; }; #include "lwpborderstuff.hxx" @@ -158,7 +158,7 @@ protected: protected: LwpBorderStuff m_BorderStuff; private: - virtual ~LwpLayoutBorder(); + virtual ~LwpLayoutBorder() override; }; class LwpLayoutBackground : public LwpVirtualPiece @@ -172,7 +172,7 @@ protected: protected: LwpBackgroundStuff m_BackgroundStuff; private: - virtual ~LwpLayoutBackground(); + virtual ~LwpLayoutBackground() override; }; class LwpExternalBorder @@ -199,7 +199,7 @@ protected: protected: LwpExternalBorder m_ExtranalBorder; private: - virtual ~LwpLayoutExternalBorder(); + virtual ~LwpLayoutExternalBorder() override; }; class LwpColumnInfo @@ -229,7 +229,7 @@ protected: sal_uInt16 m_nNumCols; LwpColumnInfo* m_pColumns; private: - virtual ~LwpLayoutColumns(); + virtual ~LwpLayoutColumns() override; }; class LwpLayoutGutters : public LwpVirtualPiece @@ -243,7 +243,7 @@ protected: protected: LwpBorderStuff m_BorderBuffer; private: - virtual ~LwpLayoutGutters(); + virtual ~LwpLayoutGutters() override; }; class LwpJoinStuff @@ -302,7 +302,7 @@ protected: protected: LwpJoinStuff m_JoinStuff; private: - virtual ~LwpLayoutJoins(); + virtual ~LwpLayoutJoins() override; }; #include "lwpshadow.hxx" @@ -318,7 +318,7 @@ protected: protected: LwpShadow m_Shadow; private: - virtual ~LwpLayoutShadow(); + virtual ~LwpLayoutShadow() override; }; class LwpLayoutRelativityGuts @@ -374,7 +374,7 @@ protected: protected: LwpLayoutRelativityGuts m_RelGuts; private: - virtual ~LwpLayoutRelativity(); + virtual ~LwpLayoutRelativity() override; }; #endif diff --git a/lotuswordpro/source/filter/lwpmarker.hxx b/lotuswordpro/source/filter/lwpmarker.hxx index 7b65650f64f3..176dca8cc928 100644 --- a/lotuswordpro/source/filter/lwpmarker.hxx +++ b/lotuswordpro/source/filter/lwpmarker.hxx @@ -71,7 +71,7 @@ class LwpMarker : public LwpDLNFPVList { public: LwpMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm); - virtual ~LwpMarker(){} + virtual ~LwpMarker() override {} void Read() override; OUString GetNamedProperty(const OUString& name); protected: @@ -104,7 +104,7 @@ class LwpStoryMarker : public LwpMarker { public: LwpStoryMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm); - virtual ~LwpStoryMarker(){} + virtual ~LwpStoryMarker() override {} void Read() override; private: LwpFribRange m_Range; @@ -115,7 +115,7 @@ class LwpCHBlkMarker : public LwpStoryMarker { public: LwpCHBlkMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm); - virtual ~LwpCHBlkMarker(){} + virtual ~LwpCHBlkMarker() override {} void Read() override; sal_uInt16 GetAction(){return m_nAction;} void ConvertCHBlock(XFContentContainer* pXFPara,sal_uInt8 nType); @@ -173,7 +173,7 @@ class LwpBookMark : public LwpDLNFVList { public: LwpBookMark(LwpObjectHeader &objHdr, LwpSvStream *pStrm); - virtual ~LwpBookMark(){} + virtual ~LwpBookMark() override {} protected: void Read() override; public: @@ -191,7 +191,7 @@ class LwpFieldMark : public LwpStoryMarker { public: LwpFieldMark(LwpObjectHeader &objHdr, LwpSvStream *pStrm); - virtual ~LwpFieldMark(){} + virtual ~LwpFieldMark() override {} void Read() override; void ParseIndex(OUString& sKey1,OUString& sKey2); void ParseTOC(OUString& sLevel,OUString& sText); @@ -255,7 +255,7 @@ class LwpRubyMarker : public LwpStoryMarker { public: LwpRubyMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm); - virtual ~LwpRubyMarker(){} + virtual ~LwpRubyMarker() override {} void Read() override; const OUString& GetRubyText(){return m_strRubyText;} void SetRubyText(const OUString& sText){m_strRubyText = sText;} diff --git a/lotuswordpro/source/filter/lwpnotes.hxx b/lotuswordpro/source/filter/lwpnotes.hxx index 103195e268f6..157233f0e447 100644 --- a/lotuswordpro/source/filter/lwpnotes.hxx +++ b/lotuswordpro/source/filter/lwpnotes.hxx @@ -72,7 +72,7 @@ class LwpFribNote: public LwpFrib { public: explicit LwpFribNote(LwpPara* pPara ); - virtual ~LwpFribNote(){} + virtual ~LwpFribNote() override {} void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; void RegisterNewStyle(); void XFConvert(XFContentContainer* pCont); @@ -88,7 +88,7 @@ class LwpNoteLayout: public LwpFrameLayout { public: LwpNoteLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpNoteLayout(); + virtual ~LwpNoteLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_NOTE_LAYOUT;} virtual void RegisterStyle() override; virtual void XFConvert(XFContentContainer* pCont) override; @@ -112,7 +112,7 @@ class LwpNoteHeaderLayout: public LwpFrameLayout { public: LwpNoteHeaderLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpNoteHeaderLayout(); + virtual ~LwpNoteHeaderLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_NOTEHEADER_LAYOUT;} virtual void RegisterStyle() override; virtual void XFConvert(XFContentContainer* pCont) override; @@ -129,7 +129,7 @@ class LwpNoteTextLayout: public LwpFrameLayout { public: LwpNoteTextLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpNoteTextLayout(); + virtual ~LwpNoteTextLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_NOTETEXT_LAYOUT;} virtual void RegisterStyle() override; virtual void XFConvert(XFContentContainer* pCont) override; @@ -146,7 +146,7 @@ class LwpViewportLayout: public LwpPlacableLayout { public: LwpViewportLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpViewportLayout(); + virtual ~LwpViewportLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_VIEWPORT_LAYOUT;} virtual void RegisterStyle() override; virtual void XFConvert(XFContentContainer* pCont) override; diff --git a/lotuswordpro/source/filter/lwpnumberingoverride.hxx b/lotuswordpro/source/filter/lwpnumberingoverride.hxx index 4988eb811812..d6beef61fb1e 100644 --- a/lotuswordpro/source/filter/lwpnumberingoverride.hxx +++ b/lotuswordpro/source/filter/lwpnumberingoverride.hxx @@ -67,7 +67,7 @@ class LwpNumberingOverride : public LwpOverride { public: LwpNumberingOverride(); - virtual ~LwpNumberingOverride(){} + virtual ~LwpNumberingOverride() override {} virtual LwpNumberingOverride* clone() const override; diff --git a/lotuswordpro/source/filter/lwpnumericfmt.hxx b/lotuswordpro/source/filter/lwpnumericfmt.hxx index 1ae0fd0d6c92..890c3a4989af 100644 --- a/lotuswordpro/source/filter/lwpnumericfmt.hxx +++ b/lotuswordpro/source/filter/lwpnumericfmt.hxx @@ -308,7 +308,7 @@ protected: LwpNumericFormat cNumerics; private: - virtual ~LwpLayoutNumerics(){} + virtual ~LwpLayoutNumerics() override {} }; #endif diff --git a/lotuswordpro/source/filter/lwpobj.hxx b/lotuswordpro/source/filter/lwpobj.hxx index 041e3e1e069a..80dfb5e44c0c 100644 --- a/lotuswordpro/source/filter/lwpobj.hxx +++ b/lotuswordpro/source/filter/lwpobj.hxx @@ -83,7 +83,7 @@ class LwpObject: public salhelper::SimpleReferenceObject public: LwpObject(LwpObjectHeader objHdr, LwpSvStream* pStrm); protected: - virtual ~LwpObject(); + virtual ~LwpObject() override; LwpObjectHeader m_ObjHdr; LwpObjectStream* m_pObjStrm; LwpFoundry* m_pFoundry; diff --git a/lotuswordpro/source/filter/lwpoleobject.hxx b/lotuswordpro/source/filter/lwpoleobject.hxx index 157761e34052..f17e984f1513 100644 --- a/lotuswordpro/source/filter/lwpoleobject.hxx +++ b/lotuswordpro/source/filter/lwpoleobject.hxx @@ -116,7 +116,7 @@ class LwpOleObject : public LwpGraphicOleObject { public: LwpOleObject(LwpObjectHeader& objHdr, LwpSvStream* pStrm); - virtual ~LwpOleObject(){} + virtual ~LwpOleObject() override {} virtual void Read() override; virtual void Parse(IXFStream* pOutputStream) override; virtual void XFConvert(XFContentContainer * pCont) override; diff --git a/lotuswordpro/source/filter/lwpoverride.hxx b/lotuswordpro/source/filter/lwpoverride.hxx index 0eac133cf287..c88ed65ea937 100644 --- a/lotuswordpro/source/filter/lwpoverride.hxx +++ b/lotuswordpro/source/filter/lwpoverride.hxx @@ -364,7 +364,7 @@ class LwpSpacingOverride : public LwpOverride { public: LwpSpacingOverride(); - virtual ~LwpSpacingOverride(); + virtual ~LwpSpacingOverride() override; virtual LwpSpacingOverride* clone() const override; @@ -474,7 +474,7 @@ class LwpAmikakeOverride : public LwpOverride public: LwpAmikakeOverride(); - virtual ~LwpAmikakeOverride(); + virtual ~LwpAmikakeOverride() override; virtual LwpAmikakeOverride* clone() const override; diff --git a/lotuswordpro/source/filter/lwppagehint.hxx b/lotuswordpro/source/filter/lwppagehint.hxx index e59bf4db9d7f..25a31a6a2c64 100644 --- a/lotuswordpro/source/filter/lwppagehint.hxx +++ b/lotuswordpro/source/filter/lwppagehint.hxx @@ -103,7 +103,7 @@ public: LwpObjectID& GetPageLayoutID(){ return m_PageLayout;} sal_uInt16 GetLayoutPageNumber(){ return m_nLayoutPageNumber;} private: - virtual ~LwpPageHint(){} + virtual ~LwpPageHint() override {} LwpObjectID m_PageLayout; LwpContentHintHead m_ContentHints; diff --git a/lotuswordpro/source/filter/lwppagelayout.hxx b/lotuswordpro/source/filter/lwppagelayout.hxx index 8b64f2f777c8..a271ea568572 100644 --- a/lotuswordpro/source/filter/lwppagelayout.hxx +++ b/lotuswordpro/source/filter/lwppagelayout.hxx @@ -66,7 +66,7 @@ class LwpPageLayout: public LwpLayout { public: LwpPageLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpPageLayout(); + virtual ~LwpPageLayout() override; virtual void RegisterStyle() override; OUString RegisterEndnoteStyle(); virtual void Parse(IXFStream* pOutputStream) override; @@ -112,7 +112,7 @@ class LwpHeaderLayout: public LwpPlacableLayout { public: LwpHeaderLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpHeaderLayout(); + virtual ~LwpHeaderLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_HEADER_LAYOUT;} using LwpPlacableLayout::RegisterStyle; void RegisterStyle( XFPageMaster* pm1 ); @@ -135,7 +135,7 @@ class LwpFooterLayout: public LwpPlacableLayout { public: LwpFooterLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpFooterLayout(); + virtual ~LwpFooterLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_FOOTER_LAYOUT;} using LwpPlacableLayout::RegisterStyle; void RegisterStyle(XFPageMaster* pm1); diff --git a/lotuswordpro/source/filter/lwppara.hxx b/lotuswordpro/source/filter/lwppara.hxx index 59b479933094..fd61f1922152 100644 --- a/lotuswordpro/source/filter/lwppara.hxx +++ b/lotuswordpro/source/filter/lwppara.hxx @@ -264,7 +264,7 @@ protected: MAX_INDENT_LEVELS = 10 }; private: - virtual ~LwpPara(); + virtual ~LwpPara() override; static void OverrideAlignment(LwpAlignmentOverride* base,LwpAlignmentOverride* over,XFParaStyle* pOverStyle); void OverrideIndent(LwpIndentOverride* base,LwpIndentOverride* over,XFParaStyle* pOverStyle); diff --git a/lotuswordpro/source/filter/lwpparaborderoverride.hxx b/lotuswordpro/source/filter/lwpparaborderoverride.hxx index 5a3c4ba1595b..2a3eaf452c6b 100644 --- a/lotuswordpro/source/filter/lwpparaborderoverride.hxx +++ b/lotuswordpro/source/filter/lwpparaborderoverride.hxx @@ -70,7 +70,7 @@ class LwpParaBorderOverride : public LwpOverride { public: LwpParaBorderOverride(); - virtual ~LwpParaBorderOverride(); + virtual ~LwpParaBorderOverride() override; virtual LwpParaBorderOverride* clone() const override; diff --git a/lotuswordpro/source/filter/lwpparaproperty.hxx b/lotuswordpro/source/filter/lwpparaproperty.hxx index 8bf7cd9d5863..a83ec9014780 100644 --- a/lotuswordpro/source/filter/lwpparaproperty.hxx +++ b/lotuswordpro/source/filter/lwpparaproperty.hxx @@ -87,7 +87,7 @@ class LwpParaProperty : public LwpDLList { public: LwpParaProperty(){} - virtual ~LwpParaProperty(){} + virtual ~LwpParaProperty() override {} virtual sal_uInt32 GetType() = 0; inline LwpParaProperty* GetNext(); @@ -107,7 +107,7 @@ class LwpParaAlignProperty : public LwpParaProperty { public: explicit LwpParaAlignProperty(LwpObjectStream* pFile); - virtual ~LwpParaAlignProperty(); + virtual ~LwpParaAlignProperty() override; LwpAlignmentOverride* GetAlignment(); sal_uInt32 GetType() override; @@ -124,7 +124,7 @@ class LwpParaIndentProperty : public LwpParaProperty { public: explicit LwpParaIndentProperty(LwpObjectStream* pFile); - virtual ~LwpParaIndentProperty(); + virtual ~LwpParaIndentProperty() override; LwpIndentOverride* GetIndent(); sal_uInt32 GetType() override; inline const LwpObjectID& GetIndentID(); @@ -146,7 +146,7 @@ class LwpParaSpacingProperty : public LwpParaProperty { public: explicit LwpParaSpacingProperty(LwpObjectStream* pFile); - virtual ~LwpParaSpacingProperty(); + virtual ~LwpParaSpacingProperty() override; LwpSpacingOverride* GetSpacing(); sal_uInt32 GetType() override; private: @@ -202,7 +202,7 @@ class LwpParaBulletProperty : public LwpParaProperty public: explicit LwpParaBulletProperty(LwpObjectStream* pStrm); - virtual ~LwpParaBulletProperty(); + virtual ~LwpParaBulletProperty() override; sal_uInt32 GetType() override { return PP_LOCAL_BULLET; } @@ -238,7 +238,7 @@ class LwpParaTabRackProperty : public LwpParaProperty { public: explicit LwpParaTabRackProperty(LwpObjectStream* pStrm); - virtual ~LwpParaTabRackProperty(); + virtual ~LwpParaTabRackProperty() override; sal_uInt32 GetType() override { return PP_LOCAL_TABRACK; } inline LwpTabOverride* GetTab(); @@ -256,7 +256,7 @@ class LwpParaBackGroundProperty : public LwpParaProperty { public: explicit LwpParaBackGroundProperty(LwpObjectStream* pFile); - virtual ~LwpParaBackGroundProperty(); + virtual ~LwpParaBackGroundProperty() override; LwpBackgroundOverride* GetBackground(); sal_uInt32 GetType() override; private: diff --git a/lotuswordpro/source/filter/lwpparastyle.hxx b/lotuswordpro/source/filter/lwpparastyle.hxx index c86834c25b72..57b48922c481 100644 --- a/lotuswordpro/source/filter/lwpparastyle.hxx +++ b/lotuswordpro/source/filter/lwpparastyle.hxx @@ -76,7 +76,7 @@ class LwpParaStyle : public LwpTextStyle public: LwpParaStyle(LwpObjectHeader& objHdr, LwpSvStream* pStrm); - virtual ~LwpParaStyle(); + virtual ~LwpParaStyle() override; void Read() override; diff --git a/lotuswordpro/source/filter/lwppiece.hxx b/lotuswordpro/source/filter/lwppiece.hxx index 9a8ffcd4ec98..ee172ffe95fb 100644 --- a/lotuswordpro/source/filter/lwppiece.hxx +++ b/lotuswordpro/source/filter/lwppiece.hxx @@ -95,7 +95,7 @@ public: return m_pOverride; } protected: - virtual ~LwpVirtualPiece() + virtual ~LwpVirtualPiece() override { if( m_pOverride ) delete m_pOverride; @@ -113,7 +113,7 @@ public: } private: - virtual ~LwpParaBorderPiece() {} + virtual ~LwpParaBorderPiece() override {} }; class LwpBreaksPiece : public LwpVirtualPiece @@ -125,7 +125,7 @@ public: } private: - virtual ~LwpBreaksPiece() {} + virtual ~LwpBreaksPiece() override {} }; class LwpNumberingPiece : public LwpVirtualPiece @@ -137,7 +137,7 @@ public: } private: - virtual ~LwpNumberingPiece() {} + virtual ~LwpNumberingPiece() override {} }; class LwpTabPiece : public LwpVirtualPiece @@ -149,7 +149,7 @@ public: } private: - virtual ~LwpTabPiece() {} + virtual ~LwpTabPiece() override {} }; class LwpBackgroundPiece : public LwpVirtualPiece @@ -161,7 +161,7 @@ public: } private: - virtual ~LwpBackgroundPiece() {} + virtual ~LwpBackgroundPiece() override {} }; class LwpAlignmentPiece : public LwpVirtualPiece @@ -173,7 +173,7 @@ public: } private: - virtual ~LwpAlignmentPiece() {} + virtual ~LwpAlignmentPiece() override {} }; class LwpIndentPiece : public LwpVirtualPiece @@ -185,7 +185,7 @@ public: } private: - virtual ~LwpIndentPiece() {} + virtual ~LwpIndentPiece() override {} }; class LwpSpacingPiece : public LwpVirtualPiece @@ -197,7 +197,7 @@ public: } private: - virtual ~LwpSpacingPiece() {} + virtual ~LwpSpacingPiece() override {} }; class LwpAmikakePiece : public LwpVirtualPiece @@ -209,7 +209,7 @@ public: } private: - virtual ~LwpAmikakePiece() {} + virtual ~LwpAmikakePiece() override {} }; class LwpCharacterBorderPiece : public LwpVirtualPiece @@ -221,7 +221,7 @@ public: } private: - virtual ~LwpCharacterBorderPiece() {} + virtual ~LwpCharacterBorderPiece() override {} }; #endif diff --git a/lotuswordpro/source/filter/lwpproplist.hxx b/lotuswordpro/source/filter/lwpproplist.hxx index 3dedce7e8f28..3419ba0c6543 100644 --- a/lotuswordpro/source/filter/lwpproplist.hxx +++ b/lotuswordpro/source/filter/lwpproplist.hxx @@ -75,7 +75,7 @@ public: const LwpAtomHolder& GetValue(){return m_Value;} const LwpAtomHolder& GetName(){return m_Name;} private: - virtual ~LwpPropListElement(){} + virtual ~LwpPropListElement() override {} LwpAtomHolder m_Name; LwpAtomHolder m_Value; diff --git a/lotuswordpro/source/filter/lwprowlayout.hxx b/lotuswordpro/source/filter/lwprowlayout.hxx index 6494c2223f19..e34ae8147852 100644 --- a/lotuswordpro/source/filter/lwprowlayout.hxx +++ b/lotuswordpro/source/filter/lwprowlayout.hxx @@ -76,7 +76,7 @@ class LwpRowLayout : public LwpVirtualLayout { public: LwpRowLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpRowLayout(); + virtual ~LwpRowLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_ROW_LAYOUT;} sal_uInt16 GetRowID() { return crowid;} virtual void RegisterStyle() override; @@ -118,7 +118,7 @@ class LwpRowHeadingLayout : public LwpRowLayout { public: LwpRowHeadingLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpRowHeadingLayout(); + virtual ~LwpRowHeadingLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_ROW_HEADING_LAYOUT;} protected: void Read() override; diff --git a/lotuswordpro/source/filter/lwpsection.hxx b/lotuswordpro/source/filter/lwpsection.hxx index 47f81dbbe149..89cff3698e0c 100644 --- a/lotuswordpro/source/filter/lwpsection.hxx +++ b/lotuswordpro/source/filter/lwpsection.hxx @@ -71,7 +71,7 @@ class LwpOrderedObject : public LwpDLNFVList { public: LwpOrderedObject(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpOrderedObject(){} + virtual ~LwpOrderedObject() override {} void Read() override; LwpObjectID& GetPosition(){ return m_Para;} LwpObjectID& GetListList(){ return m_ListList;} @@ -90,7 +90,7 @@ class LwpSection : public LwpOrderedObject { public: LwpSection(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpSection(); + virtual ~LwpSection() override; inline LwpPageLayout* GetPageLayout(); void Parse(IXFStream* pOutputStream) override; OUString GetSectionName(){return m_AtomHolder.str();} @@ -118,7 +118,7 @@ class LwpIndexSection : public LwpSection { public: LwpIndexSection(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpIndexSection(); + virtual ~LwpIndexSection() override; bool IsFormatRunin(); bool IsFormatSeparator(); protected: diff --git a/lotuswordpro/source/filter/lwpsilverbullet.hxx b/lotuswordpro/source/filter/lwpsilverbullet.hxx index a3a23e5fe329..89ea7348b0d1 100644 --- a/lotuswordpro/source/filter/lwpsilverbullet.hxx +++ b/lotuswordpro/source/filter/lwpsilverbullet.hxx @@ -91,7 +91,7 @@ class LwpSilverBullet : public LwpDLNFVList public: LwpSilverBullet(LwpObjectHeader& objHdr, LwpSvStream* pStrm); - virtual ~LwpSilverBullet(); + virtual ~LwpSilverBullet() override; virtual void RegisterStyle() override; diff --git a/lotuswordpro/source/filter/lwpstory.hxx b/lotuswordpro/source/filter/lwpstory.hxx index ccd262f06941..a99777b6e134 100644 --- a/lotuswordpro/source/filter/lwpstory.hxx +++ b/lotuswordpro/source/filter/lwpstory.hxx @@ -70,7 +70,7 @@ class LwpStory: public LwpContent { public: LwpStory(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpStory(); + virtual ~LwpStory() override; private: //File format members: LwpDLVListHeadTail m_ParaList; diff --git a/lotuswordpro/source/filter/lwptable.hxx b/lotuswordpro/source/filter/lwptable.hxx index 17d7180eb37b..f75128b0d5df 100644 --- a/lotuswordpro/source/filter/lwptable.hxx +++ b/lotuswordpro/source/filter/lwptable.hxx @@ -79,7 +79,7 @@ class LwpSuperTable: public LwpContent { public: LwpSuperTable(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpSuperTable(); + virtual ~LwpSuperTable() override; virtual void Parse(IXFStream* pOutputStream) override; virtual void XFConvert(XFContentContainer* pCont) override; @@ -111,7 +111,7 @@ class LwpTable: public LwpContent { public: LwpTable(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpTable(); + virtual ~LwpTable() override; virtual void Parse(IXFStream* pOutputStream) override; double GetWidth() {return LwpTools::ConvertFromUnitsToMetric(m_nWidth);} @@ -154,7 +154,7 @@ class LwpTableHeading : public LwpTable { public: LwpTableHeading(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpTableHeading(); + virtual ~LwpTableHeading() override; virtual void Parse(IXFStream* pOutputStream) override; protected: @@ -165,7 +165,7 @@ class LwpParallelColumns : public LwpTable { public: LwpParallelColumns(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpParallelColumns(); + virtual ~LwpParallelColumns() override; protected: void Read() override; LwpObjectID cDefaultLeftColumnStyle; @@ -176,7 +176,7 @@ class LwpGlossary : public LwpParallelColumns { public: LwpGlossary(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpGlossary(); + virtual ~LwpGlossary() override; protected: void Read() override; sal_uInt16 GetNumIndexRows(); diff --git a/lotuswordpro/source/filter/lwptablelayout.hxx b/lotuswordpro/source/filter/lwptablelayout.hxx index d17f734d1bb4..16d3b09d3497 100644 --- a/lotuswordpro/source/filter/lwptablelayout.hxx +++ b/lotuswordpro/source/filter/lwptablelayout.hxx @@ -86,7 +86,7 @@ class LwpTableLayout: public LwpLayout { public: LwpTableLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpTableLayout(); + virtual ~LwpTableLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_TABLE_LAYOUT;} LwpObjectID& GetColumnLayoutHead(){return m_ColumnLayout;} void RegisterStyle() override; @@ -158,7 +158,7 @@ class LwpSuperTableLayout: public LwpPlacableLayout { public: LwpSuperTableLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpSuperTableLayout(); + virtual ~LwpSuperTableLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_SUPERTABLE_LAYOUT;} void RegisterNewStyle(); // for table style @@ -193,7 +193,7 @@ class LwpColumnLayout : public LwpVirtualLayout { public: LwpColumnLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpColumnLayout(); + virtual ~LwpColumnLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_COLUMN_LAYOUT;} sal_uInt32 GetColumnID(){return ccolid;} double GetWidth() override {return LwpTools::ConvertFromUnitsToMetric(cwidth);} @@ -214,7 +214,7 @@ class LwpTableHeadingLayout : public LwpTableLayout { public: LwpTableHeadingLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpTableHeadingLayout(); + virtual ~LwpTableHeadingLayout() override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_TABLE_HEADING_LAYOUT;} void GetStartEndRow(sal_uInt16& nStartRow, sal_uInt16& nEndRow); protected: @@ -230,7 +230,7 @@ class LwpSuperParallelColumnLayout : public LwpSuperTableLayout { public: LwpSuperParallelColumnLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpSuperParallelColumnLayout(); + virtual ~LwpSuperParallelColumnLayout() override; protected: void Read() override; }; @@ -243,7 +243,7 @@ class LwpParallelColumnsLayout : public LwpTableLayout { public: LwpParallelColumnsLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpParallelColumnsLayout(); + virtual ~LwpParallelColumnsLayout() override; protected: void Read() override; }; @@ -252,7 +252,7 @@ class LwpSuperGlossaryLayout : public LwpSuperTableLayout { public: LwpSuperGlossaryLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpSuperGlossaryLayout(); + virtual ~LwpSuperGlossaryLayout() override; protected: void Read() override; }; diff --git a/lotuswordpro/source/filter/lwptaboverride.hxx b/lotuswordpro/source/filter/lwptaboverride.hxx index f1cf18fa4676..9cfc24258fdb 100644 --- a/lotuswordpro/source/filter/lwptaboverride.hxx +++ b/lotuswordpro/source/filter/lwptaboverride.hxx @@ -70,7 +70,7 @@ public: { } - virtual ~LwpTabOverride() + virtual ~LwpTabOverride() override { } diff --git a/lotuswordpro/source/filter/lwptabrack.hxx b/lotuswordpro/source/filter/lwptabrack.hxx index 6371c9f004c3..4cc936057c01 100644 --- a/lotuswordpro/source/filter/lwptabrack.hxx +++ b/lotuswordpro/source/filter/lwptabrack.hxx @@ -138,7 +138,7 @@ public: LwpTab* Lookup(sal_uInt16 nIndex); LwpTabRack* GetNext(); private: - virtual ~LwpTabRack(){} + virtual ~LwpTabRack() override {} enum{ MaxTabs = 15 diff --git a/lotuswordpro/source/filter/lwptblcell.hxx b/lotuswordpro/source/filter/lwptblcell.hxx index c6b8f58593cc..ef105d3edc69 100644 --- a/lotuswordpro/source/filter/lwptblcell.hxx +++ b/lotuswordpro/source/filter/lwptblcell.hxx @@ -88,7 +88,7 @@ public: virtual void Convert(XFCell * pCell, LwpTableLayout* pCellsMap=nullptr); protected: - virtual ~LwpCellList(); + virtual ~LwpCellList() override; sal_uInt8 cColumn; LwpObjectID cParent; @@ -115,7 +115,7 @@ protected: sal_uInt16 cRowID; void Read() override; private: - virtual ~LwpRowList(); + virtual ~LwpRowList() override; }; /** * @brief @@ -133,7 +133,7 @@ protected: //LwpContent m_TheContent; void Read() override; private: - virtual ~LwpNumericValue(); + virtual ~LwpNumericValue() override; }; /** @@ -154,7 +154,7 @@ protected: LwpObjectID cpCellRange; void Read() override; private: - virtual ~LwpTableRange(); + virtual ~LwpTableRange() override; }; /** * @brief @@ -171,7 +171,7 @@ protected: LwpObjectID cpFolder; void Read() override; private: - virtual ~LwpCellRange(); + virtual ~LwpCellRange() override; }; /** * @brief @@ -190,7 +190,7 @@ protected: LwpObjectID cqTable; void Read() override; private: - virtual ~LwpFolder(); + virtual ~LwpFolder() override; }; /** * @brief @@ -217,7 +217,7 @@ protected: sal_uInt8 cFlags; // Used to fix dependent formula when we're // dropped, sorted. private: - virtual ~LwpDependent(); + virtual ~LwpDependent() override; }; /** diff --git a/lotuswordpro/source/filter/lwptblformula.hxx b/lotuswordpro/source/filter/lwptblformula.hxx index ad695124170e..0f9873e8a92d 100644 --- a/lotuswordpro/source/filter/lwptblformula.hxx +++ b/lotuswordpro/source/filter/lwptblformula.hxx @@ -165,7 +165,7 @@ class LwpFormulaFunc :public LwpFormulaArg { public: explicit LwpFormulaFunc(sal_uInt16 nTokenType); - virtual ~LwpFormulaFunc(); + virtual ~LwpFormulaFunc() override; void AddArg(LwpFormulaArg* pArg); @@ -206,7 +206,7 @@ protected: void ReadArguments(LwpFormulaFunc& aFunc); bool m_bSupported; private: - virtual ~LwpFormulaInfo(); + virtual ~LwpFormulaInfo() override; std::vector<LwpFormulaArg*> m_aStack; void ReadConst(); diff --git a/lotuswordpro/source/filter/lwptoc.hxx b/lotuswordpro/source/filter/lwptoc.hxx index c97fec2efcc8..1e8a6fb8a934 100644 --- a/lotuswordpro/source/filter/lwptoc.hxx +++ b/lotuswordpro/source/filter/lwptoc.hxx @@ -71,7 +71,7 @@ class LwpTocSuperLayout : public LwpSuperTableLayout { public: LwpTocSuperLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm); - virtual ~LwpTocSuperLayout(); + virtual ~LwpTocSuperLayout() override; void RegisterStyle() override; virtual void XFConvert(XFContentContainer* pCont) override; virtual LWP_LAYOUT_TYPE GetLayoutType () override { return LWP_TOC_SUPERTABLE_LAYOUT;} @@ -152,7 +152,7 @@ public: inline OUString GetSearchStyle(){return m_SearchName.str();} inline bool GetUseLeadingText(){ return (m_nFlags & USENUMBER) != 0;} private: - virtual ~LwpTocLevelData(); + virtual ~LwpTocLevelData() override; sal_uInt16 m_nFlags; sal_uInt16 m_nLevel; diff --git a/lotuswordpro/source/filter/lwpverdocument.hxx b/lotuswordpro/source/filter/lwpverdocument.hxx index 3d895ad27be3..c6ae2e826fc9 100644 --- a/lotuswordpro/source/filter/lwpverdocument.hxx +++ b/lotuswordpro/source/filter/lwpverdocument.hxx @@ -74,7 +74,7 @@ public: void Read() override; virtual void RegisterStyle() override; private: - virtual ~LwpVerDocument(){} + virtual ~LwpVerDocument() override {} sal_uInt32 m_nTabSpacing; }; diff --git a/lotuswordpro/source/filter/lwpvpointer.hxx b/lotuswordpro/source/filter/lwpvpointer.hxx index c4ebd5f177f9..283e6c688446 100644 --- a/lotuswordpro/source/filter/lwpvpointer.hxx +++ b/lotuswordpro/source/filter/lwpvpointer.hxx @@ -75,7 +75,7 @@ public: protected: LwpObjectID m_PointerID; private: - virtual ~LwpVersionedPointer(){} + virtual ~LwpVersionedPointer() override {} }; #endif diff --git a/lotuswordpro/source/filter/utlist.hxx b/lotuswordpro/source/filter/utlist.hxx index cc6af90923eb..9f1b0372e386 100644 --- a/lotuswordpro/source/filter/utlist.hxx +++ b/lotuswordpro/source/filter/utlist.hxx @@ -115,7 +115,7 @@ private: // Data class CUtOwningList : public CUtList { public: // Methods - virtual ~CUtOwningList(); + virtual ~CUtOwningList() override; }; }//end namespace OpenStormBento #endif diff --git a/lotuswordpro/source/filter/xfilter/xfcell.hxx b/lotuswordpro/source/filter/xfilter/xfcell.hxx index eba8bac66558..d8a6e3fc05d9 100644 --- a/lotuswordpro/source/filter/xfilter/xfcell.hxx +++ b/lotuswordpro/source/filter/xfilter/xfcell.hxx @@ -76,7 +76,7 @@ class XFCell : public XFContentContainer public: XFCell(); - virtual ~XFCell(); + virtual ~XFCell() override; public: using XFContentContainer::Add; diff --git a/lotuswordpro/source/filter/xfilter/xfcellstyle.hxx b/lotuswordpro/source/filter/xfilter/xfcellstyle.hxx index c85ce0689b15..b945a65c3b6e 100644 --- a/lotuswordpro/source/filter/xfilter/xfcellstyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfcellstyle.hxx @@ -84,7 +84,7 @@ class XFCellStyle : public XFStyle public: XFCellStyle(); - virtual ~XFCellStyle(); + virtual ~XFCellStyle() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xfchange.hxx b/lotuswordpro/source/filter/xfilter/xfchange.hxx index 7a185d401ef3..b1536be5ccbd 100644 --- a/lotuswordpro/source/filter/xfilter/xfchange.hxx +++ b/lotuswordpro/source/filter/xfilter/xfchange.hxx @@ -71,7 +71,7 @@ class XFChangeList : public XFContentContainer { public: XFChangeList(){} - virtual ~XFChangeList(){} + virtual ~XFChangeList() override {} virtual void ToXml(IXFStream *pStrm) override; }; @@ -79,7 +79,7 @@ class XFChangeRegion : public XFContentContainer { public: XFChangeRegion(){} - virtual ~XFChangeRegion(){} + virtual ~XFChangeRegion() override {} virtual void ToXml(IXFStream *pStrm) override; void SetChangeID(const OUString& sID){m_sID=sID;} void SetEditor(const OUString& sEditor){m_sEditor=sEditor;} @@ -92,7 +92,7 @@ class XFChangeInsert : public XFChangeRegion { public: XFChangeInsert(){} - virtual ~XFChangeInsert(){} + virtual ~XFChangeInsert() override {} void ToXml(IXFStream *pStrm) override; }; @@ -100,7 +100,7 @@ class XFChangeDelete : public XFChangeRegion { public: XFChangeDelete(){} - virtual ~XFChangeDelete(){} + virtual ~XFChangeDelete() override {} void ToXml(IXFStream *pStrm) override; }; @@ -108,7 +108,7 @@ class XFChangeStart : public XFContent { public: XFChangeStart(){} - virtual ~XFChangeStart(){} + virtual ~XFChangeStart() override {} void ToXml(IXFStream *pStrm) override; void SetChangeID(const OUString& sID){m_sID=sID;} private: @@ -119,7 +119,7 @@ class XFChangeEnd : public XFContent { public: XFChangeEnd(){} - virtual ~XFChangeEnd(){} + virtual ~XFChangeEnd() override {} void ToXml(IXFStream *pStrm) override; void SetChangeID(const OUString& sID){m_sID=sID;} private: diff --git a/lotuswordpro/source/filter/xfilter/xfcolstyle.hxx b/lotuswordpro/source/filter/xfilter/xfcolstyle.hxx index 4e89aa61666c..c63ce5dbf8ee 100644 --- a/lotuswordpro/source/filter/xfilter/xfcolstyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfcolstyle.hxx @@ -71,7 +71,7 @@ class XFColStyle : public XFStyle public: XFColStyle(); - virtual ~XFColStyle(); + virtual ~XFColStyle() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx b/lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx index e158dcddf064..526129abfd0c 100644 --- a/lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx +++ b/lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx @@ -76,7 +76,7 @@ class XFConfigManager : public XFStyleContainer { public: XFConfigManager(); - virtual ~XFConfigManager(); + virtual ~XFConfigManager() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xfcontent.hxx b/lotuswordpro/source/filter/xfilter/xfcontent.hxx index ef50c44e7e2d..dae66be46237 100644 --- a/lotuswordpro/source/filter/xfilter/xfcontent.hxx +++ b/lotuswordpro/source/filter/xfilter/xfcontent.hxx @@ -110,7 +110,7 @@ protected: virtual void ToXml(IXFStream* stream) = 0; - virtual ~XFContent() {} + virtual ~XFContent() override {} OUString m_strStyleName; private: diff --git a/lotuswordpro/source/filter/xfilter/xfcontentcontainer.hxx b/lotuswordpro/source/filter/xfilter/xfcontentcontainer.hxx index 20d067f5c2f7..ba9100e1d66b 100644 --- a/lotuswordpro/source/filter/xfilter/xfcontentcontainer.hxx +++ b/lotuswordpro/source/filter/xfilter/xfcontentcontainer.hxx @@ -81,7 +81,7 @@ public: /** * @descr Destructure, all contents will be deleted too. */ - virtual ~XFContentContainer(); + virtual ~XFContentContainer() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xfcrossref.hxx b/lotuswordpro/source/filter/xfilter/xfcrossref.hxx index 7f505e7b07ac..79d55a936b93 100644 --- a/lotuswordpro/source/filter/xfilter/xfcrossref.hxx +++ b/lotuswordpro/source/filter/xfilter/xfcrossref.hxx @@ -70,7 +70,7 @@ class XFCrossRefStart : public XFContent { public: XFCrossRefStart(); - virtual ~XFCrossRefStart(); + virtual ~XFCrossRefStart() override; void SetRefType(sal_uInt8 nType); void SetMarkName(const OUString& sName); void ToXml(IXFStream *pStrm) override; @@ -99,7 +99,7 @@ class XFCrossRefEnd : public XFContent { public: XFCrossRefEnd(); - virtual ~XFCrossRefEnd(); + virtual ~XFCrossRefEnd() override; void ToXml(IXFStream *pStrm) override; }; diff --git a/lotuswordpro/source/filter/xfilter/xfdate.hxx b/lotuswordpro/source/filter/xfilter/xfdate.hxx index 94dd4dcc883c..1c2c9d365700 100644 --- a/lotuswordpro/source/filter/xfilter/xfdate.hxx +++ b/lotuswordpro/source/filter/xfilter/xfdate.hxx @@ -71,7 +71,7 @@ class XFDate : public XFContent public: XFDate(); - virtual ~XFDate(); + virtual ~XFDate() override; virtual void ToXml(IXFStream *pStrm) override; diff --git a/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx b/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx index f93af6ef340a..4250bd0171d9 100644 --- a/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfdatestyle.hxx @@ -84,7 +84,7 @@ class XFDateStyle : public XFStyle public: XFDateStyle(); - virtual ~XFDateStyle(); + virtual ~XFDateStyle() override; public: void AddYear( bool bLongFmt = true ); diff --git a/lotuswordpro/source/filter/xfilter/xfdrawstyle.hxx b/lotuswordpro/source/filter/xfilter/xfdrawstyle.hxx index d8a32aa8f2c7..38a5b51d4ce4 100644 --- a/lotuswordpro/source/filter/xfilter/xfdrawstyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfdrawstyle.hxx @@ -80,7 +80,7 @@ class XFDrawStyle : public XFStyle public: XFDrawStyle(); - virtual ~XFDrawStyle(); + virtual ~XFDrawStyle() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xffont.hxx b/lotuswordpro/source/filter/xfilter/xffont.hxx index 3808e76aa790..0518f3499e40 100644 --- a/lotuswordpro/source/filter/xfilter/xffont.hxx +++ b/lotuswordpro/source/filter/xfilter/xffont.hxx @@ -224,7 +224,7 @@ public: friend bool operator!=(XFFont& f1, XFFont& f2); friend class XFFontFactory; private: - virtual ~XFFont() {} + virtual ~XFFont() override {} OUString m_strFontName; OUString m_strFontNameAsia; diff --git a/lotuswordpro/source/filter/xfilter/xfframe.hxx b/lotuswordpro/source/filter/xfilter/xfframe.hxx index bfe124b517b4..86125639439c 100644 --- a/lotuswordpro/source/filter/xfilter/xfframe.hxx +++ b/lotuswordpro/source/filter/xfilter/xfframe.hxx @@ -82,7 +82,7 @@ public: XFFrame(); explicit XFFrame(bool isTextBox); - virtual ~XFFrame(); + virtual ~XFFrame() override; public: using XFContentContainer::Add; diff --git a/lotuswordpro/source/filter/xfilter/xfframestyle.hxx b/lotuswordpro/source/filter/xfilter/xfframestyle.hxx index 8e5edcee774b..7dfda7c4cb40 100644 --- a/lotuswordpro/source/filter/xfilter/xfframestyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfframestyle.hxx @@ -81,7 +81,7 @@ class XFFrameStyle : public XFStyle public: XFFrameStyle(); - virtual ~XFFrameStyle(); + virtual ~XFFrameStyle() override; public: void SetWrapType(enumXFWrap wrap); diff --git a/lotuswordpro/source/filter/xfilter/xfheaderstyle.hxx b/lotuswordpro/source/filter/xfilter/xfheaderstyle.hxx index 333e3aff525d..c53ba2caf9cf 100644 --- a/lotuswordpro/source/filter/xfilter/xfheaderstyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfheaderstyle.hxx @@ -76,7 +76,7 @@ class XFHeaderStyle : public XFStyle public: explicit XFHeaderStyle(bool isFooter=false); - virtual ~XFHeaderStyle(); + virtual ~XFHeaderStyle() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xfindex.hxx b/lotuswordpro/source/filter/xfilter/xfindex.hxx index 1f958d7ab517..e68c03497155 100644 --- a/lotuswordpro/source/filter/xfilter/xfindex.hxx +++ b/lotuswordpro/source/filter/xfilter/xfindex.hxx @@ -135,7 +135,7 @@ class XFIndex : public XFContentContainer public: XFIndex(); - virtual ~XFIndex(); + virtual ~XFIndex() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xflist.hxx b/lotuswordpro/source/filter/xfilter/xflist.hxx index 5ee7a5bb3d52..5dee764803df 100644 --- a/lotuswordpro/source/filter/xfilter/xflist.hxx +++ b/lotuswordpro/source/filter/xfilter/xflist.hxx @@ -74,7 +74,7 @@ class XFList : public XFContentContainer public: XFList(); - virtual ~XFList(); + virtual ~XFList() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xfliststyle.hxx b/lotuswordpro/source/filter/xfilter/xfliststyle.hxx index 88a5de6fc926..aae9ceae7dfc 100644 --- a/lotuswordpro/source/filter/xfilter/xfliststyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfliststyle.hxx @@ -186,7 +186,7 @@ public: XFListStyle& operator=(const XFListStyle& other); - virtual ~XFListStyle(); + virtual ~XFListStyle() override; public: void SetDisplayLevel(sal_Int32 level, sal_Int16 nShowLevel); diff --git a/lotuswordpro/source/filter/xfilter/xfmasterpage.hxx b/lotuswordpro/source/filter/xfilter/xfmasterpage.hxx index ef9d1e4d5914..acd3c00af3c0 100644 --- a/lotuswordpro/source/filter/xfilter/xfmasterpage.hxx +++ b/lotuswordpro/source/filter/xfilter/xfmasterpage.hxx @@ -70,7 +70,7 @@ class XFMasterPage : public XFStyle public: XFMasterPage(); - virtual ~XFMasterPage(); + virtual ~XFMasterPage() override; public: void SetPageMaster(const OUString& pm); diff --git a/lotuswordpro/source/filter/xfilter/xfpagemaster.hxx b/lotuswordpro/source/filter/xfilter/xfpagemaster.hxx index 9493e2df0a7c..584c162ce4b5 100644 --- a/lotuswordpro/source/filter/xfilter/xfpagemaster.hxx +++ b/lotuswordpro/source/filter/xfilter/xfpagemaster.hxx @@ -78,7 +78,7 @@ class XFPageMaster : public XFStyle public: XFPageMaster(); - virtual ~XFPageMaster(); + virtual ~XFPageMaster() override; public: void SetPageWidth(double width); diff --git a/lotuswordpro/source/filter/xfilter/xfparagraph.hxx b/lotuswordpro/source/filter/xfilter/xfparagraph.hxx index 2e9a1e9e89ed..2aaf343d3132 100644 --- a/lotuswordpro/source/filter/xfilter/xfparagraph.hxx +++ b/lotuswordpro/source/filter/xfilter/xfparagraph.hxx @@ -76,7 +76,7 @@ class XFParagraph : public XFContentContainer public: XFParagraph(); - virtual ~XFParagraph(); + virtual ~XFParagraph() override; public: bool HasContents(); diff --git a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx index aa1f98bd93d6..07f4c7081a07 100644 --- a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx @@ -98,7 +98,7 @@ public: XFParaStyle& operator=(const XFParaStyle& other); - virtual ~XFParaStyle(); + virtual ~XFParaStyle() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xfplaceholder.hxx b/lotuswordpro/source/filter/xfilter/xfplaceholder.hxx index 8e57e35f53ab..3e42d903639d 100644 --- a/lotuswordpro/source/filter/xfilter/xfplaceholder.hxx +++ b/lotuswordpro/source/filter/xfilter/xfplaceholder.hxx @@ -70,7 +70,7 @@ class XFHolderStart : public XFContent { public: XFHolderStart(); - virtual ~XFHolderStart(); + virtual ~XFHolderStart() override; void SetType(const OUString& sType); void SetDesc(const OUString& sDesc); void SetPrompt(const OUString& sText); @@ -120,7 +120,7 @@ class XFHolderEnd : public XFContent { public: XFHolderEnd(); - virtual ~XFHolderEnd(); + virtual ~XFHolderEnd() override; void ToXml(IXFStream *pStrm) override; }; diff --git a/lotuswordpro/source/filter/xfilter/xfrow.hxx b/lotuswordpro/source/filter/xfilter/xfrow.hxx index 7b4dee04fa46..340b8b47d7e9 100644 --- a/lotuswordpro/source/filter/xfilter/xfrow.hxx +++ b/lotuswordpro/source/filter/xfilter/xfrow.hxx @@ -70,7 +70,7 @@ class XFRow : public XFContent public: XFRow(); - virtual ~XFRow(); + virtual ~XFRow() override; public: void AddCell(XFCell *pCell); diff --git a/lotuswordpro/source/filter/xfilter/xfrubystyle.hxx b/lotuswordpro/source/filter/xfilter/xfrubystyle.hxx index 7458d0618902..9094f1994486 100644 --- a/lotuswordpro/source/filter/xfilter/xfrubystyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfrubystyle.hxx @@ -72,7 +72,7 @@ public: , m_eAlign(enumXFRubyLeft) { } - virtual ~XFRubyStyle(){} + virtual ~XFRubyStyle() override {} virtual void ToXml(IXFStream *strm) override; void SetPosition(enumXFRubyPosition ePosition); void SetAlignment(enumXFRubyPosition eAlignment); diff --git a/lotuswordpro/source/filter/xfilter/xfsaxattrlist.hxx b/lotuswordpro/source/filter/xfilter/xfsaxattrlist.hxx index 629fcd8ddd12..23e1ebe12e5c 100644 --- a/lotuswordpro/source/filter/xfilter/xfsaxattrlist.hxx +++ b/lotuswordpro/source/filter/xfilter/xfsaxattrlist.hxx @@ -69,7 +69,7 @@ class XFSaxAttrList : public IXFAttrList public: XFSaxAttrList(); - virtual ~XFSaxAttrList(); + virtual ~XFSaxAttrList() override; public: //Interface ISaxAttributeList: diff --git a/lotuswordpro/source/filter/xfilter/xfsaxstream.hxx b/lotuswordpro/source/filter/xfilter/xfsaxstream.hxx index 1312ddd17d7c..c159fb3da18d 100644 --- a/lotuswordpro/source/filter/xfilter/xfsaxstream.hxx +++ b/lotuswordpro/source/filter/xfilter/xfsaxstream.hxx @@ -83,7 +83,7 @@ class XFSaxStream : public IXFStream public: explicit XFSaxStream(css::uno::Reference<css::xml::sax::XDocumentHandler>& xHandler); - virtual ~XFSaxStream(); + virtual ~XFSaxStream() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xfsection.hxx b/lotuswordpro/source/filter/xfilter/xfsection.hxx index 7aa68cedad52..1b892864c929 100644 --- a/lotuswordpro/source/filter/xfilter/xfsection.hxx +++ b/lotuswordpro/source/filter/xfilter/xfsection.hxx @@ -74,7 +74,7 @@ class XFSection : public XFContentContainer public: XFSection(); - virtual ~XFSection(); + virtual ~XFSection() override; public: diff --git a/lotuswordpro/source/filter/xfilter/xfsectionstyle.hxx b/lotuswordpro/source/filter/xfilter/xfsectionstyle.hxx index da7010b90061..78c2ad77e2fd 100644 --- a/lotuswordpro/source/filter/xfilter/xfsectionstyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfsectionstyle.hxx @@ -75,7 +75,7 @@ class XFSectionStyle : public XFStyle public: XFSectionStyle(); - virtual ~XFSectionStyle(); + virtual ~XFSectionStyle() override; public: void SetMarginLeft(double left); diff --git a/lotuswordpro/source/filter/xfilter/xfstyle.hxx b/lotuswordpro/source/filter/xfilter/xfstyle.hxx index 8c3f843b20b7..a1ab5623328e 100644 --- a/lotuswordpro/source/filter/xfilter/xfstyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xfstyle.hxx @@ -71,7 +71,7 @@ class XFStyle : public IXFStyle public: XFStyle(); - virtual ~XFStyle(); + virtual ~XFStyle() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xftable.hxx b/lotuswordpro/source/filter/xfilter/xftable.hxx index bdb0aacc1e15..52a7862d9c3a 100644 --- a/lotuswordpro/source/filter/xfilter/xftable.hxx +++ b/lotuswordpro/source/filter/xfilter/xftable.hxx @@ -72,7 +72,7 @@ class XFTable : public XFContent public: XFTable(); - virtual ~XFTable(); + virtual ~XFTable() override; public: void SetTableName(const OUString& name); diff --git a/lotuswordpro/source/filter/xfilter/xftablestyle.hxx b/lotuswordpro/source/filter/xfilter/xftablestyle.hxx index 4365da25f8a0..8db82183a419 100644 --- a/lotuswordpro/source/filter/xfilter/xftablestyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xftablestyle.hxx @@ -72,7 +72,7 @@ class XFTableStyle : public XFStyle public: XFTableStyle(); - virtual ~XFTableStyle(); + virtual ~XFTableStyle() override; public: void SetWidth(double width); diff --git a/lotuswordpro/source/filter/xfilter/xftextboxstyle.hxx b/lotuswordpro/source/filter/xfilter/xftextboxstyle.hxx index 58c35d9e0e1d..0b27d0847045 100644 --- a/lotuswordpro/source/filter/xfilter/xftextboxstyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xftextboxstyle.hxx @@ -71,7 +71,7 @@ class XFTextBoxStyle : public XFStyle public: XFTextBoxStyle(); - virtual ~XFTextBoxStyle(); + virtual ~XFTextBoxStyle() override; public: diff --git a/lotuswordpro/source/filter/xfilter/xftextcontent.hxx b/lotuswordpro/source/filter/xfilter/xftextcontent.hxx index 52663caf36b4..7c185fc2b9bb 100644 --- a/lotuswordpro/source/filter/xfilter/xftextcontent.hxx +++ b/lotuswordpro/source/filter/xfilter/xftextcontent.hxx @@ -73,7 +73,7 @@ public: explicit XFTextContent(const OUString& text); - virtual ~XFTextContent(); + virtual ~XFTextContent() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xftextspan.hxx b/lotuswordpro/source/filter/xfilter/xftextspan.hxx index f69970ddda99..17e033ceb1cb 100644 --- a/lotuswordpro/source/filter/xfilter/xftextspan.hxx +++ b/lotuswordpro/source/filter/xfilter/xftextspan.hxx @@ -77,7 +77,7 @@ public: XFTextSpan(); XFTextSpan(const OUString& text, const OUString& style ); - virtual ~XFTextSpan(); + virtual ~XFTextSpan() override; void Add(XFContent *pContent); void Add(const OUString& text); diff --git a/lotuswordpro/source/filter/xfilter/xftextstyle.hxx b/lotuswordpro/source/filter/xfilter/xftextstyle.hxx index 750442c1cf6a..282550e8f4d2 100644 --- a/lotuswordpro/source/filter/xfilter/xftextstyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xftextstyle.hxx @@ -76,7 +76,7 @@ class XFTextStyle : public XFStyle public: XFTextStyle(); - virtual ~XFTextStyle(); + virtual ~XFTextStyle() override; public: /** diff --git a/lotuswordpro/source/filter/xfilter/xftimestyle.hxx b/lotuswordpro/source/filter/xfilter/xftimestyle.hxx index dd10bcaebed2..f9b4d6a8416c 100644 --- a/lotuswordpro/source/filter/xfilter/xftimestyle.hxx +++ b/lotuswordpro/source/filter/xfilter/xftimestyle.hxx @@ -72,7 +72,7 @@ public: , m_bLongFmt(false) {} - virtual ~XFDateTimePart(){} + virtual ~XFDateTimePart() override {} public: void SetPartType(enumXFDatePart ePart); @@ -91,7 +91,7 @@ class XFTimePart : public XFDateTimePart public: XFTimePart(); - virtual ~XFTimePart(){} + virtual ~XFTimePart() override {} public: void SetDecimalPos(sal_Int32 pos); @@ -106,7 +106,7 @@ class XFTimeStyle : public XFStyle public: XFTimeStyle(); - virtual ~XFTimeStyle(); + virtual ~XFTimeStyle() override; public: |