diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-07 13:48:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-08 08:16:46 +0200 |
commit | 8d927d3f82a33a464662e4b54a8a07d30d4d1a19 (patch) | |
tree | d65da75b786634550eb1e7fa4b1859d63e968dfe /include/svtools/valueset.hxx | |
parent | 61623d5b90510ae6c791a41031d586a9316e74c4 (diff) |
convert Link<> to typed
Change-Id: Ia2706c308c6297d05b2862e9f86fc0f2ee90e4f0
Diffstat (limited to 'include/svtools/valueset.hxx')
-rw-r--r-- | include/svtools/valueset.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svtools/valueset.hxx b/include/svtools/valueset.hxx index 3ad941c28bb2..7215a2c4a0ff 100644 --- a/include/svtools/valueset.hxx +++ b/include/svtools/valueset.hxx @@ -222,9 +222,9 @@ private: sal_uInt16 mnSpacing; DrawFrameStyle mnFrameStyle; Color maColor; - Link<> maDoubleClickHdl; - Link<> maSelectHdl; - Link<> maHighlightHdl; + Link<ValueSet*,void> maDoubleClickHdl; + Link<ValueSet*,void> maSelectHdl; + Link<ValueSet*,void> maHighlightHdl; // bitfield bool mbFormat : 1; @@ -386,16 +386,16 @@ public: Size CalcItemSizePixel(const Size& rSize, bool bOut = true) const; long GetScrollWidth() const; - void SetSelectHdl(const Link<>& rLink) + void SetSelectHdl(const Link<ValueSet*,void>& rLink) { maSelectHdl = rLink; } - void SetDoubleClickHdl(const Link<>& rLink) + void SetDoubleClickHdl(const Link<ValueSet*,void>& rLink) { maDoubleClickHdl = rLink; } - void SetHighlightHdl(const Link<>& rLink); + void SetHighlightHdl(const Link<ValueSet*,void>& rLink); bool GetEdgeBlending() const { |