summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-09-25 11:19:01 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-09-25 18:23:14 +0000
commit14a5131658cd25009c625fcf2472a49d9392de6c (patch)
tree492d4b9d134ee0dc34e7e4afd690d62ac6731fb9 /include
parente5c8436ce88c4c433b736b776bab499240ffd187 (diff)
convert Link<> to typed
Change-Id: I7fd77490ab49a18f48e248ca277bc30b5a7d2071 Reviewed-on: https://gerrit.libreoffice.org/18858 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/svxdlg.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx
index 0fb8845a39d3..30f0dacfa18b 100644
--- a/include/svx/svxdlg.hxx
+++ b/include/svx/svxdlg.hxx
@@ -198,10 +198,11 @@ public:
virtual bool QueryClose() = 0;
};
+struct FmFoundRecordInformation;
class AbstractFmSearchDialog :public VclAbstractDialog
{
public:
- virtual void SetFoundHandler(const Link<>& lnk) = 0;
+ virtual void SetFoundHandler(const Link<FmFoundRecordInformation&,void>& lnk) = 0;
virtual void SetCanceledNotFoundHdl(const Link<>& lnk)=0;
virtual void SetActiveField(const OUString& strField)=0;
};