From 32cbfd1addeb37f302ed309e7a383e2cadc84520 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 22 Sep 2015 15:11:03 +0200 Subject: convert Link<> to typed Change-Id: Ifb8ccbbed6d7d00f15fa8cff5dfdcd5d55de0d5f Reviewed-on: https://gerrit.libreoffice.org/18773 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- include/editeng/outliner.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/editeng') diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx index c7cc67626d4c..77ae2e0dd41d 100644 --- a/include/editeng/outliner.hxx +++ b/include/editeng/outliner.hxx @@ -215,7 +215,7 @@ private: EDITENG_DLLPRIVATE void ImpPasted( sal_Int32 nStart, sal_Int32 nPrevParaCount, sal_Int32 nSize); EDITENG_DLLPRIVATE sal_Int32 ImpCalcSelectedPages( bool bIncludeFirstSelected ); - Link<> aEndCutPasteLink; + Link aEndCutPasteLink; public: OutlinerView( Outliner* pOut, vcl::Window* pWindow ); @@ -376,7 +376,7 @@ public: OUString GetSurroundingText() const; Selection GetSurroundingTextSelection() const; - void SetEndCutPasteLinkHdl(const Link<> &rLink) { aEndCutPasteLink = rLink; } + void SetEndCutPasteLinkHdl(const Link &rLink) { aEndCutPasteLink = rLink; } }; -- cgit