diff options
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/frmsel.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx index 1aec0e688c91..72c8c20b655e 100644 --- a/svx/source/dialog/frmsel.cxx +++ b/svx/source/dialog/frmsel.cxx @@ -921,12 +921,12 @@ bool FrameSelector::GetVisibleColor( Color& rColor ) const } // frame border selection -const Link<>& FrameSelector::GetSelectHdl() const +const Link<LinkParamNone*,void>& FrameSelector::GetSelectHdl() const { return mxImpl->maSelectHdl; } -void FrameSelector::SetSelectHdl( const Link<>& rHdl ) +void FrameSelector::SetSelectHdl( const Link<LinkParamNone*,void>& rHdl ) { mxImpl->maSelectHdl = rHdl; } @@ -1130,7 +1130,7 @@ void FrameSelector::MouseButtonDown( const MouseEvent& rMEvt ) mxImpl->ToggleBorderState( **aIt ); } - GetSelectHdl().Call( this ); + GetSelectHdl().Call( nullptr ); } } } |