summaryrefslogtreecommitdiff
path: root/sc/source/ui/miscdlgs/mvtabdlg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-09 11:41:20 +0200
committerNoel Grandin <noel@peralex.com>2015-09-10 11:38:30 +0200
commitf4e951a61a20edd6efbd244966e851aa378e66ad (patch)
treef4879e437b88432069001e7e3dadd2649cd33a14 /sc/source/ui/miscdlgs/mvtabdlg.cxx
parent823150ff153a6e02781b1b2b09ea6eb528111d2e (diff)
convert Link<> to typed
Change-Id: I603463d0486d4d0f21ebbdc6eca900db58bb090f
Diffstat (limited to 'sc/source/ui/miscdlgs/mvtabdlg.cxx')
-rw-r--r--sc/source/ui/miscdlgs/mvtabdlg.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/source/ui/miscdlgs/mvtabdlg.cxx b/sc/source/ui/miscdlgs/mvtabdlg.cxx
index 6840c5297d0e..6c9f4a925d5d 100644
--- a/sc/source/ui/miscdlgs/mvtabdlg.cxx
+++ b/sc/source/ui/miscdlgs/mvtabdlg.cxx
@@ -255,12 +255,10 @@ void ScMoveTableDlg::InitDocListBox()
// Handler:
-IMPL_LINK( ScMoveTableDlg, CheckBtnHdl, void *, pBtn )
+IMPL_LINK_TYPED( ScMoveTableDlg, CheckBtnHdl, RadioButton&, rBtn, void )
{
- if (pBtn == pBtnCopy)
+ if (&rBtn == pBtnCopy)
ResetRenameInput();
-
- return 0;
}
IMPL_LINK_NOARG_TYPED(ScMoveTableDlg, OkHdl, Button*, void)