diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-13 10:49:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-13 10:49:58 +0200 |
commit | bb1cc8361d13461d8bcb9a9a4a8c1b9c1721c991 (patch) | |
tree | d0ae2ada38a775c96bde63cdbedf614470370c9a /include | |
parent | c9f20fbc2caf04629cc56f556b4a09bd6599a959 (diff) |
make Link<> instances typed
Change-Id: I0727c3ac6e6e5cf087d63ddfb633845ae578cdbb
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/titledockwin.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
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<TitledDockingWindow*,void>& 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<ToolBox> m_aToolbox; VclPtr<Window> m_aContentWindow; - Link<> m_aEndDockingHdl; + Link<TitledDockingWindow*,void> 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 |