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 /svx | |
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 'svx')
-rw-r--r-- | svx/source/svdraw/svdconv.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/svx/source/svdraw/svdconv.hxx b/svx/source/svdraw/svdconv.hxx index dc8fbac4102f..b6ec7652039b 100644 --- a/svx/source/svdraw/svdconv.hxx +++ b/svx/source/svdraw/svdconv.hxx @@ -16,17 +16,11 @@ template<typename T> inline T ImplMMToTwips(T val); template<> inline double ImplMMToTwips(double fVal) { return (fVal * (72.0 / 127.0)); } template<> -inline sal_Int32 ImplMMToTwips(sal_Int32 nVal) { return ((nVal * 72 + 63) / 127); } -template<> inline sal_Int64 ImplMMToTwips(sal_Int64 nVal) { return ((nVal * 72 + 63) / 127); } template<typename T> inline T ImplTwipsToMM(T val); template<> inline double ImplTwipsToMM(double fVal) { return (fVal * (127.0 / 72.0)); } -template<> -inline sal_Int32 ImplTwipsToMM(sal_Int32 nVal) { return ((nVal * 127 + 36) / 72); } -template<> -inline sal_Int64 ImplTwipsToMM(sal_Int64 nVal) { return ((nVal * 127 + 36) / 72); } #endif // INCLUDED_SVX_SOURCE_SVDRAW_SVDCONV_HXX |