summaryrefslogtreecommitdiff
path: root/vcl/source/app/svapp.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-09 15:52:39 +0200
committerNoel Grandin <noel@peralex.com>2015-09-10 08:30:11 +0200
commit9ea0390f17d5183471a27cf7666b45abf3f1e8a0 (patch)
treee66e718581f670b37aefdc0c5376ac7cf785d878 /vcl/source/app/svapp.cxx
parent71d8cfc13a7269230fc39c895c5a24350ab07357 (diff)
convert Link<> to typed
Change-Id: Iaca21344f6a38f508f79e6d5983e515162a6dca3
Diffstat (limited to 'vcl/source/app/svapp.cxx')
-rw-r--r--vcl/source/app/svapp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 7b87430e1a4a..efd8354b2ea2 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1600,7 +1600,7 @@ Application::createFolderPicker( const Reference< uno::XComponentContext >& xSM
return pSVData->mpDefInst->createFolderPicker( xSM );
}
-void Application::setDeInitHook(Link<> const & hook) {
+void Application::setDeInitHook(Link<LinkParamNone*,void> const & hook) {
ImplSVData * pSVData = ImplGetSVData();
assert(!pSVData->maDeInitHook.IsSet());
pSVData->maDeInitHook = hook;