diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-07 09:35:04 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-08 08:16:46 +0200 |
commit | 61623d5b90510ae6c791a41031d586a9316e74c4 (patch) | |
tree | 0b5a8115ae6d603cbe6208b958d8b440ea8fd06f /sw/source/uibase/inc/redlndlg.hxx | |
parent | d7efea29cdc2faa57d172d7e4d8def18fd49536c (diff) |
convert Link<> to typed
Change-Id: I365a81a0a960f5da736c9a97aa056da16c99452f
Diffstat (limited to 'sw/source/uibase/inc/redlndlg.hxx')
-rw-r--r-- | sw/source/uibase/inc/redlndlg.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/uibase/inc/redlndlg.hxx b/sw/source/uibase/inc/redlndlg.hxx index e644d92d1d1a..1019112cec88 100644 --- a/sw/source/uibase/inc/redlndlg.hxx +++ b/sw/source/uibase/inc/redlndlg.hxx @@ -79,8 +79,8 @@ class SW_DLLPUBLIC SwRedlineAcceptDlg OUString sAutoFormat; VclPtr<SvxTPView> pTPView; VclPtr<SvxRedlinTable> pTable; // PB 2006/02/02 #i48648 now SvHeaderTabListBox - Link<> aOldSelectHdl; - Link<> aOldDeselectHdl; + Link<SvTreeListBox*,void> aOldSelectHdl; + Link<SvTreeListBox*,void> aOldDeselectHdl; bool bOnlyFormatedRedlines; bool bHasReadonlySel; bool bRedlnAutoFormat; @@ -93,8 +93,8 @@ class SW_DLLPUBLIC SwRedlineAcceptDlg DECL_DLLPRIVATE_LINK( RejectHdl, void* ); DECL_DLLPRIVATE_LINK( RejectAllHdl, void* ); DECL_DLLPRIVATE_LINK( UndoHdl, void* ); - DECL_DLLPRIVATE_LINK( DeselectHdl, void* ); - DECL_DLLPRIVATE_LINK( SelectHdl, void* ); + DECL_DLLPRIVATE_LINK_TYPED( DeselectHdl, SvTreeListBox*, void ); + DECL_DLLPRIVATE_LINK_TYPED( SelectHdl, SvTreeListBox*, void ); DECL_DLLPRIVATE_LINK_TYPED( SelectTimerHdl, Timer*, void ); DECL_DLLPRIVATE_LINK_TYPED( GotoHdl, Timer*, void ); DECL_DLLPRIVATE_LINK_TYPED( CommandHdl, SvSimpleTable*, void ); |