summaryrefslogtreecommitdiff
path: root/include/vcl/combobox.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-13 13:17:30 +0200
committerNoel Grandin <noel@peralex.com>2015-10-15 09:58:34 +0200
commit99b21cc9f3f32284061be255f437b2954a7aada0 (patch)
treef26509e7b905d147bc14fcda9fd30e2861ed00e3 /include/vcl/combobox.hxx
parentc837bfda8c646fe2f7ff789032dd9a6ee6fd396f (diff)
convert Link<> to typed
Change-Id: I6c55c74d47b13149c2fa210bb9de4e8c430c57cc
Diffstat (limited to 'include/vcl/combobox.hxx')
-rw-r--r--include/vcl/combobox.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/combobox.hxx b/include/vcl/combobox.hxx
index 46dfe347716d..a215eaff190e 100644
--- a/include/vcl/combobox.hxx
+++ b/include/vcl/combobox.hxx
@@ -123,10 +123,10 @@ public:
bool IsMultiSelectionEnabled() const;
sal_Unicode GetMultiSelectionSeparator() const;
- void SetSelectHdl(const Link<>& rLink);
- const Link<>& GetSelectHdl() const;
- void SetDoubleClickHdl(const Link<>& rLink);
- const Link<>& GetDoubleClickHdl() const;
+ void SetSelectHdl(const Link<ComboBox&,void>& rLink);
+ const Link<ComboBox&,void>& GetSelectHdl() const;
+ void SetDoubleClickHdl(const Link<ComboBox&,void>& rLink);
+ const Link<ComboBox&,void>& GetDoubleClickHdl() const;
Size CalcMinimumSize() const override;
virtual Size GetOptimalSize() const override;