diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-09-22 21:53:44 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-23 13:06:21 +0000 |
commit | 28329d7cacdf8c37a9c1863530615e1b9cfa6935 (patch) | |
tree | b21b59366d68902ab6ae7cc548cb466fcc3dd297 /sw/source/uibase/inc/actctrl.hxx | |
parent | aada49a5743c298e461660420fe48ef4c220e292 (diff) |
convert Link<> to typed
Change-Id: I9a7f38b2babf6c599f0c2709b32ecb8083fd32cc
Reviewed-on: https://gerrit.libreoffice.org/18799
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/source/uibase/inc/actctrl.hxx')
-rw-r--r-- | sw/source/uibase/inc/actctrl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/inc/actctrl.hxx b/sw/source/uibase/inc/actctrl.hxx index 5412103316e2..dee1cc853da9 100644 --- a/sw/source/uibase/inc/actctrl.hxx +++ b/sw/source/uibase/inc/actctrl.hxx @@ -25,7 +25,7 @@ // numerical input class SW_DLLPUBLIC NumEditAction: public NumericField { - Link<> aActionLink; + Link<NumEditAction&,void> aActionLink; protected: void Action(); @@ -34,7 +34,7 @@ public: NumEditAction( vcl::Window* pParent, const ResId& rResId ) : NumericField(pParent, rResId) {} - void SetActionHdl( const Link<>& rLink ) { aActionLink = rLink;} + void SetActionHdl( const Link<NumEditAction&,void>& rLink ) { aActionLink = rLink;} }; // call a link when KEY_RETURN is pressed |