summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-10 10:51:44 +0200
committerNoel Grandin <noel@peralex.com>2015-09-11 08:48:54 +0200
commite8ee8473361f09034fdcd4f30a2325a53a512a7a (patch)
tree38b7f6a9c2b8f6ad54b2698fc7bf92a7f9b8b0b9 /include
parent23175c02b0f16b213736f87697b600dbbd72ff60 (diff)
convert Link<> to typed
Change-Id: I3defac5fff9708228d9bf3200e51853a127bfdc5
Diffstat (limited to 'include')
-rw-r--r--include/svtools/treelistbox.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/svtools/treelistbox.hxx b/include/svtools/treelistbox.hxx
index 700a0e5d3274..2a3cba9caf30 100644
--- a/include/svtools/treelistbox.hxx
+++ b/include/svtools/treelistbox.hxx
@@ -295,7 +295,7 @@ private:
void SetBaseModel(SvTreeList* pNewModel);
DECL_DLLPRIVATE_LINK_TYPED( CheckButtonClick, SvLBoxButtonData *, void );
- DECL_DLLPRIVATE_LINK( TextEditEndedHdl_Impl, void * );
+ DECL_DLLPRIVATE_LINK_TYPED( TextEditEndedHdl_Impl, SvInplaceEdit2&, void );
// Handler that is called by TreeList to clone an Entry
DECL_DLLPRIVATE_LINK_TYPED( CloneHdl_Impl, SvTreeListEntry*, SvTreeListEntry* );
@@ -812,13 +812,13 @@ public:
class SvInplaceEdit2
{
- Link<> aCallBackHdl;
- Accelerator aAccReturn;
- Accelerator aAccEscape;
- Idle aIdle;
+ Link<SvInplaceEdit2&,void> aCallBackHdl;
+ Accelerator aAccReturn;
+ Accelerator aAccEscape;
+ Idle aIdle;
VclPtr<Edit> pEdit;
- bool bCanceled;
- bool bAlreadyInCallBack;
+ bool bCanceled;
+ bool bAlreadyInCallBack;
void CallCallBackHdl_Impl();
DECL_LINK_TYPED( Timeout_Impl, Idle *, void );
@@ -827,7 +827,7 @@ class SvInplaceEdit2
public:
SvInplaceEdit2( vcl::Window* pParent, const Point& rPos, const Size& rSize,
- const OUString& rData, const Link<>& rNotifyEditEnd,
+ const OUString& rData, const Link<SvInplaceEdit2&,void>& rNotifyEditEnd,
const Selection&, bool bMultiLine = false );
~SvInplaceEdit2();
bool KeyInput( const KeyEvent& rKEvt );