summaryrefslogtreecommitdiff
path: root/desktop/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-21 09:14:04 +0200
committerNoel Grandin <noel@peralex.com>2015-09-22 20:21:55 +0200
commit55dda8e8d0a29ae150f58168d72ab2611ed2b8a8 (patch)
treec7aa7cf59e1e4fe12a8a66cac3080b09db4e0481 /desktop/source
parent6d8124e30c6ce38219ca323f9674f242c822c360 (diff)
convert Link<> to typed
Change-Id: I92df586295c11bc9e9276770656901c2e4e714b9
Diffstat (limited to 'desktop/source')
-rw-r--r--desktop/source/app/app.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 153196386567..de739c8b4976 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1697,9 +1697,9 @@ int Desktop::doShutdown()
return EXIT_SUCCESS;
}
-IMPL_STATIC_LINK( Desktop, ImplInitFilterHdl, ConvertData*, pData )
+IMPL_STATIC_LINK_TYPED( Desktop, ImplInitFilterHdl, ::ConvertData&, rData, bool )
{
- return GraphicFilter::GetGraphicFilter().GetFilterCallback().Call( pData );
+ return GraphicFilter::GetGraphicFilter().GetFilterCallback().Call( &rData );
}
bool Desktop::InitializeConfiguration()