diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-14 10:03:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-14 11:45:21 +0200 |
commit | 5669ea31ddacf87bab6283dc9de0aeccb761b5cb (patch) | |
tree | a3eb0409c3c20684781cdc71d8a30c5976797830 /starmath/source/utility.cxx | |
parent | 50f024844b1e00249e638df6db029f09465c4c10 (diff) |
loplugin:unusedmethods unused return value in starmath
Change-Id: Ic70c3d727ecadd082f7e5d293fc2b279b1287b8f
Diffstat (limited to 'starmath/source/utility.cxx')
-rw-r--r-- | starmath/source/utility.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/starmath/source/utility.cxx b/starmath/source/utility.cxx index 39b04440402b..f66c385dc72d 100644 --- a/starmath/source/utility.cxx +++ b/starmath/source/utility.cxx @@ -66,11 +66,6 @@ SmFontPickList& SmFontPickList::operator = (const SmFontPickList& rList) return *this; } -vcl::Font SmFontPickList::operator [] (sal_uInt16 nPos) const -{ - return aFontVec[nPos]; -} - vcl::Font SmFontPickList::Get(sal_uInt16 nPos) const { return nPos < aFontVec.size() ? aFontVec[nPos] : vcl::Font(); |