diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-16 12:35:30 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-16 12:35:54 +0200 |
commit | 8d44385bf64c1ea9bdb9100fc7ed005ac7071968 (patch) | |
tree | 4d0897a98757d40ff212f2328a9a8bd433aeaf61 /cui/source/inc | |
parent | e324766d54ef67625b4ca9ba727a95316c2a1dc5 (diff) |
convert Link<> to typed
Change-Id: I48893ac7130ad671864faa5eb55409b21cdda77e
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/SpellDialog.hxx | 2 | ||||
-rw-r--r-- | cui/source/inc/optlingu.hxx | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/cui/source/inc/SpellDialog.hxx b/cui/source/inc/SpellDialog.hxx index 40497fbd3fff..449271d5b2fd 100644 --- a/cui/source/inc/SpellDialog.hxx +++ b/cui/source/inc/SpellDialog.hxx @@ -185,7 +185,7 @@ private: DECL_LINK_TYPED( AddToDictClickHdl, Button*, void ); DECL_LINK_TYPED( LanguageSelectHdl, ListBox&, void ); DECL_LINK_TYPED( DialogUndoHdl, SpellUndoAction_Impl&, void ); - DECL_LINK( HandleHyperlink, FixedHyperlink * ); + DECL_LINK_TYPED( HandleHyperlink, FixedHyperlink&, void ); DECL_LINK_TYPED( InitHdl, void*, void ); diff --git a/cui/source/inc/optlingu.hxx b/cui/source/inc/optlingu.hxx index 3653b927d837..dd0730f6bb7e 100644 --- a/cui/source/inc/optlingu.hxx +++ b/cui/source/inc/optlingu.hxx @@ -74,14 +74,14 @@ class SvxEditModulesDlg : public ModalDialog SvTreeListEntry* CreateEntry(OUString& rTxt, sal_uInt16 nCol); - DECL_LINK_TYPED(SelectHdl_Impl, SvTreeListBox*, void); - DECL_LINK_TYPED(UpDownHdl_Impl, Button*, void); - DECL_LINK_TYPED(ClickHdl_Impl, Button*, void); - DECL_LINK_TYPED(BackHdl_Impl, Button*, void); + DECL_LINK_TYPED( SelectHdl_Impl, SvTreeListBox*, void ); + DECL_LINK_TYPED( UpDownHdl_Impl, Button*, void ); + DECL_LINK_TYPED( ClickHdl_Impl, Button*, void ); + DECL_LINK_TYPED( BackHdl_Impl, Button*, void ); DECL_LINK_TYPED( LangSelectListBoxHdl_Impl, ListBox&, void ); DECL_LINK_TYPED( BoxCheckButtonHdl_Impl2, SvLBoxButtonData*, void ); DECL_LINK_TYPED( BoxCheckButtonHdl_Impl, SvTreeListBox*, void ); - DECL_LINK(OpenURLHdl_Impl, void *); + DECL_LINK_TYPED( OpenURLHdl_Impl, FixedHyperlink&, void ); void LangSelectHdl_Impl(ListBox*); public: @@ -143,7 +143,7 @@ private: DECL_LINK_TYPED( BoxDoubleClickHdl_Impl, SvTreeListBox*, bool ); DECL_LINK_TYPED( BoxCheckButtonHdl_Impl, SvTreeListBox*, void ); DECL_LINK_TYPED( PostDblClickHdl_Impl, void *, void); - DECL_LINK( OpenURLHdl_Impl, void *); + DECL_LINK_TYPED( OpenURLHdl_Impl, FixedHyperlink&, void ); void UpdateModulesBox_Impl(); void UpdateDicBox_Impl(); |