summaryrefslogtreecommitdiff
path: root/sc/inc/appoptio.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-09-22 20:42:43 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-09-22 19:00:22 +0000
commit8d16834a9820fb8c983753c3e2a05922885060b9 (patch)
tree38233def6a45828596d623ee32a2422533f7645d /sc/inc/appoptio.hxx
parent3d9dd244ce272e2bedc751c5dd250d15b06459e7 (diff)
convert Link<> to typed
Change-Id: I80df7c3907fe6ac8a6ee4dddb2caeed28ea1b879 Reviewed-on: https://gerrit.libreoffice.org/18784 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/inc/appoptio.hxx')
-rw-r--r--sc/inc/appoptio.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx
index c73af70c2b8c..4620f3c7539a 100644
--- a/sc/inc/appoptio.hxx
+++ b/sc/inc/appoptio.hxx
@@ -116,13 +116,13 @@ class ScAppCfg : public ScAppOptions
ScLinkConfigItem aMiscItem;
ScLinkConfigItem aCompatItem;
- DECL_LINK( LayoutCommitHdl, void* );
- DECL_LINK( InputCommitHdl, void* );
- DECL_LINK( RevisionCommitHdl, void* );
- DECL_LINK( ContentCommitHdl, void* );
- DECL_LINK( SortListCommitHdl, void* );
- DECL_LINK( MiscCommitHdl, void* );
- DECL_LINK( CompatCommitHdl, void* );
+ DECL_LINK_TYPED( LayoutCommitHdl, ScLinkConfigItem&, void );
+ DECL_LINK_TYPED( InputCommitHdl, ScLinkConfigItem&, void );
+ DECL_LINK_TYPED( RevisionCommitHdl, ScLinkConfigItem&, void );
+ DECL_LINK_TYPED( ContentCommitHdl, ScLinkConfigItem&, void );
+ DECL_LINK_TYPED( SortListCommitHdl, ScLinkConfigItem&, void );
+ DECL_LINK_TYPED( MiscCommitHdl, ScLinkConfigItem&, void );
+ DECL_LINK_TYPED( CompatCommitHdl, ScLinkConfigItem&, void );
static com::sun::star::uno::Sequence<OUString> GetLayoutPropertyNames();
static com::sun::star::uno::Sequence<OUString> GetInputPropertyNames();