summaryrefslogtreecommitdiffstats
path: root/include/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-16 13:22:11 +0200
committerNoel Grandin <noel@peralex.com>2015-10-16 13:44:18 +0200
commita9bb16e89ca23e1975becbb0fa061e379613ace4 (patch)
tree1d9b434d15122f6e319179d2815714e88838042b /include/svtools
parentFix type of nPixel (diff)
downloadcore-a9bb16e89ca23e1975becbb0fa061e379613ace4.tar.gz
core-a9bb16e89ca23e1975becbb0fa061e379613ace4.zip
convert Link<> to typed
Change-Id: I9aa883a2228ed5d39e924e4364cd3a812f2037a3
Diffstat (limited to 'include/svtools')
-rw-r--r--include/svtools/editbrowsebox.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/editbrowsebox.hxx b/include/svtools/editbrowsebox.hxx
index e1c7c1047b4b..532b47ed1ee4 100644
--- a/include/svtools/editbrowsebox.hxx
+++ b/include/svtools/editbrowsebox.hxx
@@ -284,7 +284,7 @@ namespace svt
VclPtr<CheckBox> pBox;
Rectangle aFocusRect;
Link<VclPtr<CheckBox>,void> m_aClickLink;
- Link<> m_aModifyLink;
+ Link<LinkParamNone*,void> m_aModifyLink;
public:
CheckBoxControl(vcl::Window* pParent, WinBits nWinStyle = 0);
@@ -301,7 +301,7 @@ namespace svt
void SetClickHdl(const Link<VclPtr<CheckBox>,void>& rHdl) {m_aClickLink = rHdl;}
- void SetModifyHdl(const Link<>& rHdl) {m_aModifyLink = rHdl;}
+ void SetModifyHdl(const Link<LinkParamNone*,void>& rHdl) {m_aModifyLink = rHdl;}
CheckBox& GetBox() {return *pBox;};
@@ -326,7 +326,7 @@ namespace svt
protected:
virtual bool WantMouseEvent() const override;
private:
- DECL_LINK(ModifyHdl, void*);
+ DECL_LINK_TYPED(ModifyHdl, LinkParamNone*, void);
};