diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-14 15:36:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-17 09:59:58 +0200 |
commit | 8d54e96536a1fee037788f5576b8a52dbbb541e4 (patch) | |
tree | 7bc37f25c7251179f5679b1274a14ba32e3b9dc3 /include | |
parent | ab936a4e4277e248a64faa702d4e889f69527b3e (diff) |
make Link<> typed
Change-Id: If16adfa3310df94c79d1a4fe9a9bb4f4f56365f0
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/zforlist.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx index a6e8732618e3..8849057fa6c7 100644 --- a/include/svl/zforlist.hxx +++ b/include/svl/zforlist.hxx @@ -337,7 +337,7 @@ public: ~SvNumberFormatter(); /// Set CallBack to ColorTable - void SetColorLink( const Link<>& rColorTableCallBack ); + void SetColorLink( const Link<sal_uInt16,Color*>& rColorTableCallBack ); /// Do the CallBack to ColorTable Color* GetUserDefColor(sal_uInt16 nIndex); @@ -797,7 +797,7 @@ private: OnDemandNativeNumberWrapper xNatNum; // Native number service loaded on demand ImpSvNumberInputScan* pStringScanner; // Input string scanner ImpSvNumberformatScan* pFormatScanner; // Format code string scanner - Link<> aColorLink; // User defined color table CallBack + Link<sal_uInt16,Color*> aColorLink; // User defined color table CallBack sal_uInt32 MaxCLOffset; // Max language/country offset used sal_uInt32 nDefaultSystemCurrencyFormat; // NewCurrency matching SYSTEM locale LanguageType IniLnge; // Initialized setting language/country |