diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-23 15:10:45 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-24 16:20:51 +0000 |
commit | 74ce05b940be952be63687f31be45a58afa1d1ee (patch) | |
tree | ad894ce2bd300c1676211d7b8259ab1cd238b507 /desktop | |
parent | e85b2333bce7b1dcae73861df6d90b48b9f4efe5 (diff) |
convert Link<> to typed
Change-Id: I280473a7a9069a86388f608bddc8e48879771bc9
Reviewed-on: https://gerrit.libreoffice.org/18815
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/app.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index de739c8b4976..4baa27d434df 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -1699,7 +1699,7 @@ int Desktop::doShutdown() IMPL_STATIC_LINK_TYPED( Desktop, ImplInitFilterHdl, ::ConvertData&, rData, bool ) { - return GraphicFilter::GetGraphicFilter().GetFilterCallback().Call( &rData ); + return GraphicFilter::GetGraphicFilter().GetFilterCallback().Call( rData ); } bool Desktop::InitializeConfiguration() |