diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-10 08:29:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-10 08:30:11 +0200 |
commit | 2466aa27429b2ffcc45f108284396d7527470e78 (patch) | |
tree | 620676e4b649ebeee85a5fb70e9dcbc1a59c0245 /svl/source | |
parent | 9ea0390f17d5183471a27cf7666b45abf3f1e8a0 (diff) |
convert Link<> to typed
Change-Id: Iaeaa33b0b066723d561df0c58f3faedead259d8f
Diffstat (limited to 'svl/source')
-rw-r--r-- | svl/source/numbers/zforlist.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx index db8e67d19d04..d7596cb12f05 100644 --- a/svl/source/numbers/zforlist.cxx +++ b/svl/source/numbers/zforlist.cxx @@ -3215,14 +3215,13 @@ const NfCurrencyEntry* SvNumberFormatter::GetLegacyOnlyCurrencyEntry( const OUSt // static -IMPL_STATIC_LINK_NOARG( SvNumberFormatter, CurrencyChangeLink ) +IMPL_STATIC_LINK_NOARG_TYPED( SvNumberFormatter, CurrencyChangeLink, LinkParamNone*, void ) { ::osl::MutexGuard aGuard( GetMutex() ); OUString aAbbrev; LanguageType eLang = LANGUAGE_SYSTEM; SvtSysLocaleOptions().GetCurrencyAbbrevAndLanguage( aAbbrev, eLang ); SetDefaultSystemCurrency( aAbbrev, eLang ); - return 0; } |