diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-09 11:41:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-10 11:38:30 +0200 |
commit | f4e951a61a20edd6efbd244966e851aa378e66ad (patch) | |
tree | f4879e437b88432069001e7e3dadd2649cd33a14 /sd | |
parent | 823150ff153a6e02781b1b2b09ea6eb528111d2e (diff) |
convert Link<> to typed
Change-Id: I603463d0486d4d0f21ebbdc6eca900db58bb090f
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/animations/SlideTransitionPane.cxx | 3 | ||||
-rw-r--r-- | sd/source/ui/animations/SlideTransitionPane.hxx | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/animations/SlideTransitionPane.cxx b/sd/source/ui/animations/SlideTransitionPane.cxx index 91285b05c9d5..0948e8017439 100644 --- a/sd/source/ui/animations/SlideTransitionPane.cxx +++ b/sd/source/ui/animations/SlideTransitionPane.cxx @@ -1005,11 +1005,10 @@ IMPL_LINK_NOARG(SlideTransitionPane, TransitionSelected) return 0; } -IMPL_LINK_NOARG(SlideTransitionPane, AdvanceSlideRadioButtonToggled) +IMPL_LINK_NOARG_TYPED(SlideTransitionPane, AdvanceSlideRadioButtonToggled, RadioButton&, void) { updateControlState(); applyToSelectedPages(); - return 0; } IMPL_LINK_NOARG(SlideTransitionPane, AdvanceTimeModified) diff --git a/sd/source/ui/animations/SlideTransitionPane.hxx b/sd/source/ui/animations/SlideTransitionPane.hxx index ab640bfa161b..24196b7cb4ea 100644 --- a/sd/source/ui/animations/SlideTransitionPane.hxx +++ b/sd/source/ui/animations/SlideTransitionPane.hxx @@ -90,7 +90,7 @@ private: DECL_LINK_TYPED( AutoPreviewClicked, Button*, void ); DECL_LINK( TransitionSelected, void * ); - DECL_LINK( AdvanceSlideRadioButtonToggled, void * ); + DECL_LINK_TYPED( AdvanceSlideRadioButtonToggled, RadioButton&, void ); DECL_LINK( AdvanceTimeModified, void * ); DECL_LINK( SpeedListBoxSelected, void * ); DECL_LINK( SoundListBoxSelected, void * ); |