diff options
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: */ |