summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/helpinterceptor.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-15 13:51:46 +0200
committerNoel Grandin <noel@peralex.com>2015-09-16 08:38:54 +0200
commit34c55149476dbdc369382098eab92874b296310e (patch)
tree4728f4c95c310d481fc577d3535d8ccd40709b19 /sfx2/source/appl/helpinterceptor.hxx
parent50ca487b2f4d7377b3357299025e8c50058ef596 (diff)
convert Link<> to typed
Change-Id: I1956a7b3cf1d6f3757e6586b793d4355e0697ca9
Diffstat (limited to 'sfx2/source/appl/helpinterceptor.hxx')
-rw-r--r--sfx2/source/appl/helpinterceptor.hxx4
1 files changed, 2 insertions, 2 deletions
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<HelpListener_Impl&,void> 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<HelpListener_Impl&,void>& rLink ) { aChangeLink = rLink; }
OUString GetFactory() const { return aFactory; }
};
// HelpStatusListener_Impl -----------------------------------------------------