diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-09 21:29:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-10 11:25:45 +0200 |
commit | 73d0dfd51caaa4cce8ad195fa2631f3fa00d691c (patch) | |
tree | 77926d9ab23e0fff4781725d3f9952869d1c2401 /include/svtools/asynclink.hxx | |
parent | 3ae4264a0db7f725abc33779ec9b11a45e17e279 (diff) |
Replace IMPL_STATIC_LINK[_TYPED] with more useful variants
Change-Id: I344ba9d22adada82170d45a4cf723af6a286b883
Diffstat (limited to 'include/svtools/asynclink.hxx')
-rw-r--r-- | include/svtools/asynclink.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/asynclink.hxx b/include/svtools/asynclink.hxx index 643e002dd703..449a4db81b4c 100644 --- a/include/svtools/asynclink.hxx +++ b/include/svtools/asynclink.hxx @@ -40,8 +40,8 @@ class SVT_DLLPUBLIC AsynchronLink void* _pArg; ::osl::Mutex* _pMutex; - DECL_DLLPRIVATE_STATIC_LINK_TYPED( AsynchronLink, HandleCall_Idle, Idle*, void ); - DECL_DLLPRIVATE_STATIC_LINK( AsynchronLink, HandleCall_PostUserEvent, void* ); + DECL_DLLPRIVATE_LINK_TYPED( HandleCall_Idle, Idle*, void ); + DECL_DLLPRIVATE_LINK( HandleCall_PostUserEvent, void* ); SVT_DLLPRIVATE void Call_Impl( void* pArg ); public: |