summaryrefslogtreecommitdiff
path: root/svx/source/tbxctrls/itemwin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/tbxctrls/itemwin.cxx')
-rw-r--r--svx/source/tbxctrls/itemwin.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/tbxctrls/itemwin.cxx b/svx/source/tbxctrls/itemwin.cxx
index 391d2e74fa35..b417110f3bfd 100644
--- a/svx/source/tbxctrls/itemwin.cxx
+++ b/svx/source/tbxctrls/itemwin.cxx
@@ -447,11 +447,11 @@ bool SvxFillTypeBox::Notify( NotifyEvent& rNEvt )
{
case KEY_RETURN:
bHandled = true;
- ( (Link<>&)GetSelectHdl() ).Call( this );
+ GetSelectHdl().Call( *this );
break;
case KEY_TAB:
bRelease = false;
- ( (Link<>&)GetSelectHdl() ).Call( this );
+ GetSelectHdl().Call( *this );
bRelease = true;
break;
@@ -514,12 +514,12 @@ bool SvxFillAttrBox::Notify( NotifyEvent& rNEvt )
switch ( pKEvt->GetKeyCode().GetCode() )
{
case KEY_RETURN:
- ( (Link<>&)GetSelectHdl() ).Call( this );
+ GetSelectHdl().Call( *this );
bHandled = true;
break;
case KEY_TAB:
bRelease = false;
- GetSelectHdl().Call( this );
+ GetSelectHdl().Call( *this );
bRelease = true;
break;
case KEY_ESCAPE: