From c80fb09256f02379b78f7bb219e94dfbf5277872 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 10 Sep 2015 15:24:30 +0200 Subject: convert Link<> to typed Change-Id: I8f64b8f8e1e8ac7ce1475fc5132acb7171237a32 --- vcl/source/control/field.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vcl/source') diff --git a/vcl/source/control/field.cxx b/vcl/source/control/field.cxx index 41a72a92d9c7..25d249c87ab5 100644 --- a/vcl/source/control/field.cxx +++ b/vcl/source/control/field.cxx @@ -1766,7 +1766,7 @@ void MetricField::Last() void MetricField::CustomConvert() { - maCustomConvertLink.Call( this ); + maCustomConvertLink.Call( *this ); } MetricBox::MetricBox( vcl::Window* pParent, WinBits nWinStyle ) : @@ -1855,7 +1855,7 @@ void MetricBox::ReformatAll() void MetricBox::CustomConvert() { - maCustomConvertLink.Call( this ); + maCustomConvertLink.Call( *this ); } void MetricBox::InsertValue( sal_Int64 nValue, FieldUnit eInUnit, sal_Int32 nPos ) -- cgit