diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-29 12:40:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-29 15:08:43 +0200 |
commit | 34180700b2686c97cdce0b52ca9578a41a153035 (patch) | |
tree | 073f3753e4483f30efa3c7c769f23971e6a046d5 /include/svl | |
parent | e710170d906fcb248a5e4ff5a3a90cbf0e20003d (diff) |
loplugin:removeunusedmethods, remove unused stuff
Change-Id: I35456b2a3ad2a84a1d045f09cdfb29e4c19b8350
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/zforlist.hxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx index 7e73dc86a009..c1b79e0ddf58 100644 --- a/include/svl/zforlist.hxx +++ b/include/svl/zforlist.hxx @@ -236,8 +236,6 @@ public: sal_uInt16 nNegativeFmt, sal_uInt16 nDig, sal_Unicode cZero); ~NfCurrencyEntry() {} - inline NfCurrencyEntry* Clone() const; - /// Symbols and language identical bool operator==( const NfCurrencyEntry& r ) const; @@ -297,17 +295,6 @@ NfCurrencyEntry::NfCurrencyEntry(const OUString& rSymbol, const OUString& rBankS { } -NfCurrencyEntry* NfCurrencyEntry::Clone() const -{ - return new NfCurrencyEntry( - aSymbol, aBankSymbol, eLanguage, nPositiveFormat, nNegativeFormat, nDigits, cZeroChar); -} - -inline NfCurrencyEntry* new_clone( const NfCurrencyEntry& r ) -{ - return r.Clone(); -} - typedef std::vector< OUString > NfWSStringsDtor; class SvNumberFormatterRegistry_Impl; |