summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/bastype3.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source/basicide/bastype3.hxx')
-rw-r--r--basctl/source/basicide/bastype3.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basctl/source/basicide/bastype3.hxx b/basctl/source/basicide/bastype3.hxx
index 43ad48511504..afc685b8ba60 100644
--- a/basctl/source/basicide/bastype3.hxx
+++ b/basctl/source/basicide/bastype3.hxx
@@ -30,9 +30,9 @@ class ExtendedEdit : public Edit
{
private:
Accelerator aAcc;
- Link aAccHdl;
- Link aGotFocusHdl;
- Link aLoseFocusHdl;
+ Link<> aAccHdl;
+ Link<> aGotFocusHdl;
+ Link<> aLoseFocusHdl;
protected:
DECL_LINK( EditAccHdl, Accelerator * );
@@ -42,9 +42,9 @@ protected:
public:
ExtendedEdit( vcl::Window* pParent, IDEResId nRes );
- void SetAccHdl( const Link& rLink ) { aAccHdl = rLink; }
- void SetLoseFocusHdl( const Link& rLink ) { aLoseFocusHdl = rLink; }
- void SetGotFocusHdl( const Link& rLink ) { aGotFocusHdl = rLink; }
+ void SetAccHdl( const Link<>& rLink ) { aAccHdl = rLink; }
+ void SetLoseFocusHdl( const Link<>& rLink ) { aLoseFocusHdl = rLink; }
+ void SetGotFocusHdl( const Link<>& rLink ) { aGotFocusHdl = rLink; }
Accelerator& GetAccelerator() { return aAcc; }
};