diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 15:10:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-29 18:29:59 +0200 |
commit | e6c08b6b302b00cc55e9963ce47d6cc2416049a6 (patch) | |
tree | b9120fd4dd8e53a415fee0f2305699dc3f111a4d /test | |
parent | 91dd52bc54f59d9362f10988326839f8e7553e65 (diff) |
Remove unnecessary STATIC_LINK macro
Change-Id: I4788824667c8e0d1d4e0717b7ae7737bb0fd2c90
Diffstat (limited to 'test')
-rw-r--r-- | test/source/bootstrapfixture.cxx | 2 | ||||
-rw-r--r-- | test/source/vclbootstrapprotector.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/source/bootstrapfixture.cxx b/test/source/bootstrapfixture.cxx index c27f22fb5c0b..fe4823d4cd27 100644 --- a/test/source/bootstrapfixture.cxx +++ b/test/source/bootstrapfixture.cxx @@ -67,7 +67,7 @@ void test_init_impl(bool bAssertOnDialog, bool bNeedUCB, // Make GraphicConverter work, normally done in desktop::Desktop::Main() Application::SetFilterHdl( - STATIC_LINK(0, test::BootstrapFixture, ImplInitFilterHdl)); + LINK(0, test::BootstrapFixture, ImplInitFilterHdl)); if (bNeedUCB) { diff --git a/test/source/vclbootstrapprotector.cxx b/test/source/vclbootstrapprotector.cxx index b15ed9651a52..b2991b1de898 100644 --- a/test/source/vclbootstrapprotector.cxx +++ b/test/source/vclbootstrapprotector.cxx @@ -43,7 +43,7 @@ public: if (test::isHeadless()) { Application::EnableHeadlessMode(true); } - Application::setDeInitHook(STATIC_LINK(this, Protector, deinitHook)); + Application::setDeInitHook(LINK(this, Protector, deinitHook)); } private: |