diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-01 13:56:48 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-02 06:20:35 +0000 |
commit | d68a0fc050ea4d57e15246f8e71781cd42ebdaa1 (patch) | |
tree | d8f8e8823de13253a1bb41a8a4804dfec042694b /starmath | |
parent | de020fc9c3c67541067bc7e0b72ed41eae650288 (diff) |
loplugin:unusedmethods
Change-Id: Ie1603adf3908fd0668bcbe8f75c6bafa0d0bfd6c
Reviewed-on: https://gerrit.libreoffice.org/19072
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/inc/symbol.hxx | 6 | ||||
-rw-r--r-- | starmath/inc/utility.hxx | 8 |
2 files changed, 0 insertions, 14 deletions
diff --git a/starmath/inc/symbol.hxx b/starmath/inc/symbol.hxx index da477ff1aa5b..f5b084cfaae4 100644 --- a/starmath/inc/symbol.hxx +++ b/starmath/inc/symbol.hxx @@ -39,12 +39,6 @@ -inline const OUString GetExportSymbolName( const OUString &rUiSymbolName ) -{ - return SmLocalizedSymbolData::GetExportSymbolName( rUiSymbolName ); -} - - inline const OUString GetUiSymbolName( const OUString &rExportSymbolName ) { return SmLocalizedSymbolData::GetUiSymbolName( rExportSymbolName ); diff --git a/starmath/inc/utility.hxx b/starmath/inc/utility.hxx index 0870e6e686aa..7ba0a1e4f402 100644 --- a/starmath/inc/utility.hxx +++ b/starmath/inc/utility.hxx @@ -44,14 +44,6 @@ inline long SmPtsTo100th_mm(long nNumPts) } -inline long SmPtsTo100th_mm(const Fraction &rNumPts) - // as above but with argument 'rNumPts' as 'Fraction' -{ - Fraction aTmp (254000L, 7227L); - return aTmp *= rNumPts; -} - - inline Fraction Sm100th_mmToPts(long nNum100th_mm) // returns the length (in points) that corresponds to the length // 'nNum100th_mm' (in 100th of mm). |