diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-22 16:18:58 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-22 18:57:16 +0000 |
commit | efeb9281535f9e32a1d23332a19da69767dd1387 (patch) | |
tree | 8a78e678e2b640ac9d7fe366eae1f09d16ff4767 /cui/source/inc | |
parent | 0554e83ca9968e2301934bb2f420c9b9faee5681 (diff) |
convert Link<> to typed
Change-Id: I12b3fdb443226a63786b94ce9836e9d2efa6a5c8
Reviewed-on: https://gerrit.libreoffice.org/18776
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/cuifmsearch.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/inc/cuifmsearch.hxx b/cui/source/inc/cuifmsearch.hxx index fb1d9b27b936..42a9fab92c1c 100644 --- a/cui/source/inc/cuifmsearch.hxx +++ b/cui/source/inc/cuifmsearch.hxx @@ -81,7 +81,7 @@ class FmSearchDialog : public ModalDialog Link<> m_lnkFoundHandler; ///< Handler for "found" Link<> m_lnkCanceledNotFoundHdl; ///< Handler for Positioning the Cursors - Link<> m_lnkContextSupplier; ///< for search in contexts + Link<FmSearchContext&,sal_uInt32> m_lnkContextSupplier; ///< for search in contexts /// memorize the currently selected field for every context ::std::vector<OUString> m_arrContextFields; @@ -108,7 +108,7 @@ public: arrFields of the context) */ FmSearchDialog(vcl::Window* pParent, const OUString& strInitialText, const ::std::vector< OUString >& _rContexts, sal_Int16 nInitialContext, - const Link<>& lnkContextSupplier); + const Link<FmSearchContext&,sal_uInt32>& lnkContextSupplier); virtual ~FmSearchDialog(); virtual void dispose() SAL_OVERRIDE; |