diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-19 09:11:34 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-26 11:15:35 +0200 |
commit | 167bc621ef825ed5b961502fe9324a675ee34e42 (patch) | |
tree | 523838d8adc14a62f846529ee6eab3343b2fe87b /sd/source/ui/inc/pubdlg.hxx | |
parent | 46a27805fb707544a844a961a3743b8b992282f0 (diff) |
Convert vcl Button Link<> click handler to typed Link<Button*,void>
Change-Id: Ie80dfb003118d40741549c41ebcc7eda4819f05b
Diffstat (limited to 'sd/source/ui/inc/pubdlg.hxx')
-rw-r--r-- | sd/source/ui/inc/pubdlg.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sd/source/ui/inc/pubdlg.hxx b/sd/source/ui/inc/pubdlg.hxx index f9670c7b038f..1514594cae75 100644 --- a/sd/source/ui/inc/pubdlg.hxx +++ b/sd/source/ui/inc/pubdlg.hxx @@ -177,21 +177,21 @@ private: void LoadPreviewButtons(); - DECL_LINK( FinishHdl, void * ); - DECL_LINK( NextPageHdl, void * ); - DECL_LINK( LastPageHdl, void * ); + DECL_LINK_TYPED( FinishHdl, Button*, void ); + DECL_LINK_TYPED( NextPageHdl, Button*, void ); + DECL_LINK_TYPED( LastPageHdl, Button*, void ); - DECL_LINK( DesignHdl, RadioButton * ); + DECL_LINK_TYPED( DesignHdl, Button*, void ); DECL_LINK( DesignSelectHdl, void * ); - DECL_LINK( DesignDeleteHdl, void * ); - DECL_LINK( BaseHdl, void * ); - DECL_LINK( ContentHdl, void * ); - DECL_LINK( GfxFormatHdl, RadioButton * ); - DECL_LINK( ResolutionHdl, RadioButton * ); + DECL_LINK_TYPED( DesignDeleteHdl, Button*, void ); + DECL_LINK_TYPED( BaseHdl, Button*, void ); + DECL_LINK_TYPED( ContentHdl, Button*, void ); + DECL_LINK_TYPED( GfxFormatHdl, Button *, void ); + DECL_LINK_TYPED( ResolutionHdl, Button*, void ); DECL_LINK( ButtonsHdl, void * ); - DECL_LINK( ColorHdl, PushButton * ); - DECL_LINK( WebServerHdl, RadioButton * ); - DECL_LINK( SlideChgHdl, void * ); + DECL_LINK_TYPED( ColorHdl, Button*, void ); + DECL_LINK_TYPED( WebServerHdl, Button *, void ); + DECL_LINK_TYPED( SlideChgHdl, Button*, void ); public: |