From 34c55149476dbdc369382098eab92874b296310e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 15 Sep 2015 13:51:46 +0200 Subject: convert Link<> to typed Change-Id: I1956a7b3cf1d6f3757e6586b793d4355e0697ca9 --- sfx2/source/appl/helpinterceptor.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sfx2/source/appl/helpinterceptor.hxx') diff --git a/sfx2/source/appl/helpinterceptor.hxx b/sfx2/source/appl/helpinterceptor.hxx index 47d9c74df6a7..8a03f37476f6 100644 --- a/sfx2/source/appl/helpinterceptor.hxx +++ b/sfx2/source/appl/helpinterceptor.hxx @@ -119,7 +119,7 @@ class HelpListener_Impl : public ::cppu::WeakImplHelper< ::com::sun::star::frame { private: HelpInterceptor_Impl* pInterceptor; - Link<> aChangeLink; + Link aChangeLink; OUString aFactory; public: @@ -130,7 +130,7 @@ public: virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& obj ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE; - void SetChangeHdl( const Link<>& rLink ) { aChangeLink = rLink; } + void SetChangeHdl( const Link& rLink ) { aChangeLink = rLink; } OUString GetFactory() const { return aFactory; } }; // HelpStatusListener_Impl ----------------------------------------------------- -- cgit