diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-23 13:21:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-24 07:57:07 +0100 |
commit | ec02714d6cd5be67d03e333efddb42ab572cae77 (patch) | |
tree | 9e28e8a87c823b39a334830fcb6dfb564a967a08 /starmath | |
parent | 945a119675788f7c8f0a133ac0271f9340c1653a (diff) |
loplugin:unused-returns in drawinglayer..svx
Change-Id: I033a78cc7fe7d8e5086f1c855c4aa371cc98dc7c
Reviewed-on: https://gerrit.libreoffice.org/48400
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/ooxmlexport.cxx | 5 | ||||
-rw-r--r-- | starmath/source/ooxmlexport.hxx | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/starmath/source/ooxmlexport.cxx b/starmath/source/ooxmlexport.cxx index e718a4ed7ca5..74f5ef77c45f 100644 --- a/starmath/source/ooxmlexport.cxx +++ b/starmath/source/ooxmlexport.cxx @@ -24,16 +24,15 @@ SmOoxmlExport::SmOoxmlExport(const SmNode *const pIn, OoxmlVersion const v, { } -bool SmOoxmlExport::ConvertFromStarMath( const ::sax_fastparser::FSHelperPtr& serializer ) +void SmOoxmlExport::ConvertFromStarMath( const ::sax_fastparser::FSHelperPtr& serializer ) { if( m_pTree == nullptr ) - return false; + return; m_pSerializer = serializer; m_pSerializer->startElementNS( XML_m, XML_oMath, FSNS( XML_xmlns, XML_m ), "http://schemas.openxmlformats.org/officeDocument/2006/math", FSEND ); HandleNode( m_pTree, 0 ); m_pSerializer->endElementNS( XML_m, XML_oMath ); - return true; } // NOTE: This is still work in progress and unfinished, but it already covers a good diff --git a/starmath/source/ooxmlexport.hxx b/starmath/source/ooxmlexport.hxx index fac866b05d2f..f7e05d7d165f 100644 --- a/starmath/source/ooxmlexport.hxx +++ b/starmath/source/ooxmlexport.hxx @@ -24,7 +24,7 @@ class SmOoxmlExport : public SmWordExportBase public: SmOoxmlExport(const SmNode* pIn, oox::core::OoxmlVersion version, oox::drawingml::DocumentType documentType); - bool ConvertFromStarMath( const ::sax_fastparser::FSHelperPtr& m_pSerializer ); + void ConvertFromStarMath( const ::sax_fastparser::FSHelperPtr& m_pSerializer ); private: void HandleVerticalStack( const SmNode* pNode, int nLevel ) override; void HandleText( const SmNode* pNode, int nLevel ) override; |