diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-03 09:21:43 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-06 10:55:59 +0000 |
commit | 871a41cfd043e1c7391ca0b8b3c5e60bd799025c (patch) | |
tree | 395c13351fc57350dbf7bb14371b3553b8d08868 /include/unotools/localedatawrapper.hxx | |
parent | e47db97d2ced9178456eebaece11118158dce406 (diff) |
loplugin:unusedmethods unotools
Change-Id: Ieb73b50471263212285b9c3883c082477c1ad656
Reviewed-on: https://gerrit.libreoffice.org/16729
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/unotools/localedatawrapper.hxx')
-rw-r--r-- | include/unotools/localedatawrapper.hxx | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/include/unotools/localedatawrapper.hxx b/include/unotools/localedatawrapper.hxx index d6448599e596..55106d8ca491 100644 --- a/include/unotools/localedatawrapper.hxx +++ b/include/unotools/localedatawrapper.hxx @@ -211,9 +211,7 @@ public: { return getOneLocaleItem( ::com::sun::star::i18n::LocaleItem::DOUBLE_QUOTATION_START ); } const OUString& getDoubleQuotationMarkEnd() const { return getOneLocaleItem( ::com::sun::star::i18n::LocaleItem::DOUBLE_QUOTATION_END ); } - const OUString& getMeasurementSystem() const - { return getOneLocaleItem( ::com::sun::star::i18n::LocaleItem::MEASUREMENT_SYSTEM ); } - MeasurementSystem getMeasurementSystemEnum() const + MeasurementSystem getMeasurementSystemEnum() const { return mapMeasurementStringToEnum( getOneLocaleItem( ::com::sun::star::i18n::LocaleItem::MEASUREMENT_SYSTEM ) ); } const OUString& getTimeAM() const { return getOneLocaleItem( ::com::sun::star::i18n::LocaleItem::TIME_AM ); } @@ -285,13 +283,6 @@ public: OUString getCurr( sal_Int64 nNumber, sal_uInt16 nDecimals, const OUString& rCurrencySymbol, bool bUseThousandSep = true ) const; - /** Default currency formatted string, use with - care as default currency may change in any - locale, for example, DEM -> EUR */ - OUString getCurr( sal_Int64 nNumber, sal_uInt16 nDecimals, - bool bUseThousandSep = true ) const - { return getCurr( nNumber, nDecimals, - getCurrSymbol(), bUseThousandSep ); } // dummy returns, to be implemented inline sal_Unicode getCurrZeroChar() const @@ -310,9 +301,6 @@ public: { return getOneReservedWord( ::com::sun::star::i18n::reservedWords::TRUE_WORD ); } const OUString& getFalseWord() const { return getOneReservedWord( ::com::sun::star::i18n::reservedWords::FALSE_WORD ); } - /// return a quarter string matching nQuarter (0..3) => "1st quarter" .. "4th quarter" - const OUString& getQuarterWord( sal_Int16 nQuarter ) const - { return getOneReservedWord( ::com::sun::star::i18n::reservedWords::QUARTER1_WORD + nQuarter ); } const OUString& getAboveWord() const { return getOneReservedWord( ::com::sun::star::i18n::reservedWords::ABOVE_WORD ); } const OUString& getBelowWord() const |