summaryrefslogtreecommitdiff
path: root/include/vcl/field.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-10 15:24:30 +0200
committerNoel Grandin <noel@peralex.com>2015-09-11 08:48:55 +0200
commitc80fb09256f02379b78f7bb219e94dfbf5277872 (patch)
treead5f615dcd45b02d48e7e0b4933d344a06461c1f /include/vcl/field.hxx
parentcf0c04a428754dfd5aa477cebc5441bc74e27005 (diff)
convert Link<> to typed
Change-Id: I8f64b8f8e1e8ac7ce1475fc5132acb7171237a32
Diffstat (limited to 'include/vcl/field.hxx')
-rw-r--r--include/vcl/field.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/field.hxx b/include/vcl/field.hxx
index e6e117e8198f..8ed681bac67b 100644
--- a/include/vcl/field.hxx
+++ b/include/vcl/field.hxx
@@ -222,7 +222,7 @@ protected:
OUString maCurUnitText;
sal_Int64 mnBaseValue;
FieldUnit meUnit;
- Link<> maCustomConvertLink;
+ Link<MetricFormatter&,void> maCustomConvertLink;
protected:
MetricFormatter();
@@ -262,7 +262,7 @@ public:
virtual OUString CreateFieldText( sal_Int64 nValue ) const SAL_OVERRIDE;
sal_Int64 GetCorrectedValue( FieldUnit eOutUnit ) const;
- void SetCustomConvertHdl( const Link<>& rLink ) { maCustomConvertLink = rLink; }
+ void SetCustomConvertHdl( const Link<MetricFormatter&,void>& rLink ) { maCustomConvertLink = rLink; }
};