summaryrefslogtreecommitdiff
path: root/test/source/setupvcl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/source/setupvcl.cxx')
-rw-r--r--test/source/setupvcl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/setupvcl.cxx b/test/source/setupvcl.cxx
index c1703aa47e5a..bd5401b2f059 100644
--- a/test/source/setupvcl.cxx
+++ b/test/source/setupvcl.cxx
@@ -27,14 +27,14 @@
namespace {
struct Hook { // LINK only works as a member of a class...
- DECL_STATIC_LINK_TYPED(Hook, deinitHook, LinkParamNone *, void);
+ DECL_STATIC_LINK(Hook, deinitHook, LinkParamNone *, void);
};
// HACK so that defaultBootstrap_InitialComponentContext (in
// unobootstrapprotector) is called before InitVCL (below), but component
// context is disposed (redundantly again in unobootstrapprotector) from within
// DeInitVCL (cf. Desktop::DeInit, desktop/source/app/app.cxx):
-IMPL_STATIC_LINK_NOARG_TYPED(Hook, deinitHook, LinkParamNone *, void) {
+IMPL_STATIC_LINK_NOARG(Hook, deinitHook, LinkParamNone *, void) {
css::uno::Reference<css::uno::XComponentContext> context;
try {
context = comphelper::getProcessComponentContext();