diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-19 09:13:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-19 13:26:27 +0100 |
commit | be8c414567f49242164b1fdfb12764b16be355c1 (patch) | |
tree | c1f505272ec27e5e069f5d6964dc4f7b20150a5a /starmath/source | |
parent | be94207ecb88a9005ee6624e354d70c9613d7653 (diff) |
loplugin:unusedmethods also check for functions returning bool
we were previously excluding them
Change-Id: I48a68799b0de60b4995fae541eb363e043d4dd11
Reviewed-on: https://gerrit.libreoffice.org/48167
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath/source')
-rw-r--r-- | starmath/source/document.cxx | 4 | ||||
-rw-r--r-- | starmath/source/mathmlattr.hxx | 5 |
2 files changed, 2 insertions, 7 deletions
diff --git a/starmath/source/document.cxx b/starmath/source/document.cxx index 399ff0dece69..2d5a29e2f6ba 100644 --- a/starmath/source/document.cxx +++ b/starmath/source/document.cxx @@ -858,7 +858,7 @@ bool SmDocShell::ConvertTo( SfxMedium &rMedium ) return bRet; } -bool SmDocShell::writeFormulaOoxml( +void SmDocShell::writeFormulaOoxml( ::sax_fastparser::FSHelperPtr const& pSerializer, oox::core::OoxmlVersion const version, oox::drawingml::DocumentType const documentType) @@ -868,7 +868,7 @@ bool SmDocShell::writeFormulaOoxml( if( mpTree ) ArrangeFormula(); SmOoxmlExport aEquation(mpTree, version, documentType); - return aEquation.ConvertFromStarMath( pSerializer ); + aEquation.ConvertFromStarMath( pSerializer ); } void SmDocShell::writeFormulaRtf(OStringBuffer& rBuffer, rtl_TextEncoding nEncoding) diff --git a/starmath/source/mathmlattr.hxx b/starmath/source/mathmlattr.hxx index a794e2f482a6..232e080e65dc 100644 --- a/starmath/source/mathmlattr.hxx +++ b/starmath/source/mathmlattr.hxx @@ -18,11 +18,6 @@ // <https://www.w3.org/TR/MathML/chapter2.html#id.2.1.5.1> // MathML 2: 2.4.4.2 Attributes with units // <https://www.w3.org/TR/MathML2/chapter2.html#fund.attval> - -sal_Int32 ParseMathMLUnsignedNumber(const OUString &rStr, Fraction *pUN); - -sal_Int32 ParseMathMLNumber(const OUString &rStr, Fraction *pN); - // MathML 3: 2.1.5.2 Length Valued Attributes // <https://www.w3.org/TR/MathML/chapter2.html#fund.units> |