diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-16 11:00:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-17 08:19:32 +0200 |
commit | c784b1a339ab59b7cf5caacd10be5945ec3e0f9f (patch) | |
tree | 8da723597589cf913e98dcf33f7eb27c6f67343e /include | |
parent | 073b5e877eaae2dac44900a855ce8ca3cb60a782 (diff) |
convert Link<> to typed
Change-Id: Ie9f7f6a5dda1fd23558775b643e5b8fa850f4a89
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/editeng.hxx | 4 | ||||
-rw-r--r-- | include/editeng/outliner.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx index 6f0d5fb7a60e..0e0c4becaaf6 100644 --- a/include/editeng/editeng.hxx +++ b/include/editeng/editeng.hxx @@ -462,8 +462,8 @@ public: // MT: Can't create new virtual functions like for ParagraphInserted/Deleted, musst be compatible in SRC638, change later... void SetBeginMovingParagraphsHdl( const Link<MoveParagraphsInfo&,void>& rLink ); void SetEndMovingParagraphsHdl( const Link<MoveParagraphsInfo&,void>& rLink ); - void SetBeginPasteOrDropHdl( const Link<>& rLink ); - void SetEndPasteOrDropHdl( const Link<>& rLink ); + void SetBeginPasteOrDropHdl( const Link<PasteOrDropInfos&,void>& rLink ); + void SetEndPasteOrDropHdl( const Link<PasteOrDropInfos&,void>& rLink ); virtual void PaintingFirstLine( sal_Int32 nPara, const Point& rStartPos, long nBaseLineY, const Point& rOrigin, short nOrientation, OutputDevice* pOutDev ); virtual void ParagraphInserted( sal_Int32 nNewParagraph ); diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx index f925847e9868..18d01e354452 100644 --- a/include/editeng/outliner.hxx +++ b/include/editeng/outliner.hxx @@ -620,8 +620,8 @@ class EDITENG_DLLPUBLIC Outliner : public SfxBroadcaster DECL_LINK( ParaVisibleStateChangedHdl, Paragraph* ); DECL_LINK_TYPED( BeginMovingParagraphsHdl, MoveParagraphsInfo&, void ); DECL_LINK_TYPED( EndMovingParagraphsHdl, MoveParagraphsInfo&, void ); - DECL_LINK( BeginPasteOrDropHdl, PasteOrDropInfos* ); - DECL_LINK( EndPasteOrDropHdl, PasteOrDropInfos* ); + DECL_LINK_TYPED( BeginPasteOrDropHdl, PasteOrDropInfos&, void ); + DECL_LINK_TYPED( EndPasteOrDropHdl, PasteOrDropInfos&, void ); DECL_LINK_TYPED( EditEngineNotifyHdl, EENotify&, void ); void ImplCheckParagraphs( sal_Int32 nStart, sal_Int32 nEnd ); bool ImplHasNumberFormat( sal_Int32 nPara ) const; |