From bb1cc8361d13461d8bcb9a9a4a8c1b9c1721c991 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 13 Aug 2015 10:49:17 +0200 Subject: make Link<> instances typed Change-Id: I0727c3ac6e6e5cf087d63ddfb633845ae578cdbb --- include/sfx2/titledockwin.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/sfx2') diff --git a/include/sfx2/titledockwin.hxx b/include/sfx2/titledockwin.hxx index 4200910e4f56..5d16fe2ebd17 100644 --- a/include/sfx2/titledockwin.hxx +++ b/include/sfx2/titledockwin.hxx @@ -60,7 +60,7 @@ namespace sfx2 return impl_addDropDownToolBoxItem( i_rItemText, i_nHelpId, i_rCallback ); } - void SetEndDockingHdl( const Link<>& i_rEndDockingHdl ) { m_aEndDockingHdl = i_rEndDockingHdl; } + void SetEndDockingHdl( const Link& i_rEndDockingHdl ) { m_aEndDockingHdl = i_rEndDockingHdl; } /** resets the toolbox. Upon return, the only item in the toolbox is the closer. */ @@ -122,7 +122,7 @@ namespace sfx2 VclPtr m_aToolbox; VclPtr m_aContentWindow; - Link<> m_aEndDockingHdl; + Link m_aEndDockingHdl; /** The border that is painted around the inner window. The bevel shadow lines are part of the border, so where the border is 0 no -- cgit