diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-05-11 09:11:55 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-05-11 10:23:32 +0200 |
commit | f09ccedb5f18a634c6aaa3340c8d1718f6279c71 (patch) | |
tree | 4cb1b560f1b65083eacefe5d63d932a5c0444ac4 /starmath | |
parent | 2962ceec4b96758bec7e7a0390d5ec60e3ce708f (diff) |
starmath Word export: remove redundant 'virtual' keywords
Change-Id: I7b8600ae6516ffe5f30bbefbd554b9e7a2614211
Reviewed-on: https://gerrit.libreoffice.org/37494
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/ooxmlexport.hxx | 22 | ||||
-rw-r--r-- | starmath/source/rtfexport.hxx | 22 |
2 files changed, 22 insertions, 22 deletions
diff --git a/starmath/source/ooxmlexport.hxx b/starmath/source/ooxmlexport.hxx index 41cb6516efac..fac866b05d2f 100644 --- a/starmath/source/ooxmlexport.hxx +++ b/starmath/source/ooxmlexport.hxx @@ -26,17 +26,17 @@ public: oox::drawingml::DocumentType documentType); bool ConvertFromStarMath( const ::sax_fastparser::FSHelperPtr& m_pSerializer ); private: - virtual void HandleVerticalStack( const SmNode* pNode, int nLevel ) override; - virtual void HandleText( const SmNode* pNode, int nLevel ) override; - virtual void HandleFractions( const SmNode* pNode, int nLevel, const char* type ) override; - virtual void HandleRoot( const SmRootNode* pNode, int nLevel ) override; - virtual void HandleAttribute( const SmAttributNode* pNode, int nLevel ) override; - virtual void HandleOperator( const SmOperNode* pNode, int nLevel ) override; - virtual void HandleSubSupScriptInternal( const SmSubSupNode* pNode, int nLevel, int flags ) override; - virtual void HandleMatrix( const SmMatrixNode* pNode, int nLevel ) override; - virtual void HandleBrace( const SmBraceNode* pNode, int nLevel ) override; - virtual void HandleVerticalBrace( const SmVerticalBraceNode* pNode, int nLevel ) override; - virtual void HandleBlank() override; + void HandleVerticalStack( const SmNode* pNode, int nLevel ) override; + void HandleText( const SmNode* pNode, int nLevel ) override; + void HandleFractions( const SmNode* pNode, int nLevel, const char* type ) override; + void HandleRoot( const SmRootNode* pNode, int nLevel ) override; + void HandleAttribute( const SmAttributNode* pNode, int nLevel ) override; + void HandleOperator( const SmOperNode* pNode, int nLevel ) override; + void HandleSubSupScriptInternal( const SmSubSupNode* pNode, int nLevel, int flags ) override; + void HandleMatrix( const SmMatrixNode* pNode, int nLevel ) override; + void HandleBrace( const SmBraceNode* pNode, int nLevel ) override; + void HandleVerticalBrace( const SmVerticalBraceNode* pNode, int nLevel ) override; + void HandleBlank() override; ::sax_fastparser::FSHelperPtr m_pSerializer; oox::core::OoxmlVersion version; /// needed to determine markup for nested run properties diff --git a/starmath/source/rtfexport.hxx b/starmath/source/rtfexport.hxx index 380fda80149b..d45fcb49cfdc 100644 --- a/starmath/source/rtfexport.hxx +++ b/starmath/source/rtfexport.hxx @@ -23,17 +23,17 @@ public: explicit SmRtfExport(const SmNode* pIn); void ConvertFromStarMath(OStringBuffer& rBuffer, rtl_TextEncoding nEncoding); private: - virtual void HandleVerticalStack(const SmNode* pNode, int nLevel) override; - virtual void HandleText(const SmNode* pNode, int nLevel) override; - virtual void HandleFractions(const SmNode* pNode, int nLevel, const char* type) override; - virtual void HandleRoot(const SmRootNode* pNode, int nLevel) override; - virtual void HandleAttribute(const SmAttributNode* pNode, int nLevel) override; - virtual void HandleOperator(const SmOperNode* pNode, int nLevel) override; - virtual void HandleSubSupScriptInternal(const SmSubSupNode* pNode, int nLevel, int flags) override; - virtual void HandleMatrix(const SmMatrixNode* pNode, int nLevel) override; - virtual void HandleBrace(const SmBraceNode* pNode, int nLevel) override; - virtual void HandleVerticalBrace(const SmVerticalBraceNode* pNode, int nLevel) override; - virtual void HandleBlank() override; + void HandleVerticalStack(const SmNode* pNode, int nLevel) override; + void HandleText(const SmNode* pNode, int nLevel) override; + void HandleFractions(const SmNode* pNode, int nLevel, const char* type) override; + void HandleRoot(const SmRootNode* pNode, int nLevel) override; + void HandleAttribute(const SmAttributNode* pNode, int nLevel) override; + void HandleOperator(const SmOperNode* pNode, int nLevel) override; + void HandleSubSupScriptInternal(const SmSubSupNode* pNode, int nLevel, int flags) override; + void HandleMatrix(const SmMatrixNode* pNode, int nLevel) override; + void HandleBrace(const SmBraceNode* pNode, int nLevel) override; + void HandleVerticalBrace(const SmVerticalBraceNode* pNode, int nLevel) override; + void HandleBlank() override; OStringBuffer* m_pBuffer; rtl_TextEncoding m_nEncoding; |