summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-25 09:05:21 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-26 07:50:33 +0000
commit74713b34a36577f19eb3194246de73fa4f2bb741 (patch)
tree334f601b030923ab621a92bae3f512ff67c99374 /include/svl
parent132f7b2a8cc986ee79c4124ed2bc368d6dfaa418 (diff)
loplugin:unusedmethods
Change-Id: Ib36bc0e87d00abb638cbfec511cd13b6179eabda Reviewed-on: https://gerrit.libreoffice.org/25431 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/zforlist.hxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx
index a18354fdf3b6..50e7ea3ca498 100644
--- a/include/svl/zforlist.hxx
+++ b/include/svl/zforlist.hxx
@@ -231,9 +231,6 @@ public:
NfCurrencyEntry( const css::i18n::Currency & rCurr,
const LocaleDataWrapper& rLocaleData,
LanguageType eLang );
- inline NfCurrencyEntry(const OUString& rSymbol, const OUString& rBankSymbol,
- LanguageType eLang, sal_uInt16 nPositiveFmt,
- sal_uInt16 nNegativeFmt, sal_uInt16 nDig, sal_Unicode cZero);
~NfCurrencyEntry() {}
/// Symbols and language identical
@@ -282,19 +279,6 @@ public:
static inline sal_Unicode GetEuroSymbol() { return sal_Unicode(0x20AC); }
};
-/**
- * Necessary for ptr_vector on Windows. Please don't remove these, or at
- * least check it on Windows before attempting to remove them.
- */
-NfCurrencyEntry::NfCurrencyEntry(const OUString& rSymbol, const OUString& rBankSymbol,
- LanguageType eLang, sal_uInt16 nPositiveFmt,
- sal_uInt16 nNegativeFmt, sal_uInt16 nDig, sal_Unicode cZero)
- : aSymbol(rSymbol), aBankSymbol(rBankSymbol), eLanguage(eLang)
- , nPositiveFormat(nPositiveFmt), nNegativeFormat(nNegativeFmt)
- , nDigits(nDig), cZeroChar(cZero)
-{
-}
-
typedef std::vector< OUString > NfWSStringsDtor;
class SvNumberFormatterRegistry_Impl;