From b98fb89598a400b33a47ceebafe1604c03c829dc Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 16 Sep 2015 09:51:57 +0200 Subject: convert Link<> to typed Change-Id: Ied8e0b35f193770a6651f1c57dfb8eedd22d837c --- editeng/source/editeng/impedit.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'editeng/source/editeng/impedit.hxx') diff --git a/editeng/source/editeng/impedit.hxx b/editeng/source/editeng/impedit.hxx index 04adb48ddb01..f495d0d6345e 100644 --- a/editeng/source/editeng/impedit.hxx +++ b/editeng/source/editeng/impedit.hxx @@ -479,8 +479,8 @@ private: // If it is detected at one point that the StatusHdl has to be called, but // this should not happen immediately (critical section): Timer aStatusTimer; - Link aStatusHdlLink; - Link<> aNotifyHdl; + Link aStatusHdlLink; + Link aNotifyHdl; Link<> aImportHdl; Link<> aBeginMovingParagraphsHdl; Link<> aEndMovingParagraphsHdl; @@ -836,10 +836,10 @@ public: EditSelection* SelectParagraph( sal_Int32 nPara ); void SetStatusEventHdl( const Link& rLink ) { aStatusHdlLink = rLink; } - Link GetStatusEventHdl() const { return aStatusHdlLink; } + Link GetStatusEventHdl() const { return aStatusHdlLink; } - void SetNotifyHdl( const Link<>& rLink ) { aNotifyHdl = rLink; } - Link<> GetNotifyHdl() const { return aNotifyHdl; } + void SetNotifyHdl( const Link& rLink ) { aNotifyHdl = rLink; } + Link GetNotifyHdl() const { return aNotifyHdl; } void FormatAndUpdate( EditView* pCurView = 0 ); inline void IdleFormatAndUpdate( EditView* pCurView = 0 ); -- cgit v1.2.3