diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-21 09:14:04 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-22 20:21:55 +0200 |
commit | 55dda8e8d0a29ae150f58168d72ab2611ed2b8a8 (patch) | |
tree | c7aa7cf59e1e4fe12a8a66cac3080b09db4e0481 /test | |
parent | 6d8124e30c6ce38219ca323f9674f242c822c360 (diff) |
convert Link<> to typed
Change-Id: I92df586295c11bc9e9276770656901c2e4e714b9
Diffstat (limited to 'test')
-rw-r--r-- | test/source/bootstrapfixture.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx index eb50025a9fd1..45fb98a2fb93 100644 --- a/test/source/bootstrapfixture.cxx +++ b/test/source/bootstrapfixture.cxx @@ -233,10 +233,10 @@ void test::BootstrapFixture::validate(const OUString& rPath, test::ValidationFor #endif } -IMPL_STATIC_LINK( - test::BootstrapFixture, ImplInitFilterHdl, ConvertData*, pData) +IMPL_STATIC_LINK_TYPED( + test::BootstrapFixture, ImplInitFilterHdl, ConvertData&, rData, bool) { - return GraphicFilter::GetGraphicFilter().GetFilterCallback().Call( pData ); + return GraphicFilter::GetGraphicFilter().GetFilterCallback().Call( &rData ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |