diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-16 12:35:30 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-16 12:35:54 +0200 |
commit | 8d44385bf64c1ea9bdb9100fc7ed005ac7071968 (patch) | |
tree | 4d0897a98757d40ff212f2328a9a8bd433aeaf61 /vcl/source | |
parent | e324766d54ef67625b4ca9ba727a95316c2a1dc5 (diff) |
convert Link<> to typed
Change-Id: I48893ac7130ad671864faa5eb55409b21cdda77e
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/control/fixedhyper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/control/fixedhyper.cxx b/vcl/source/control/fixedhyper.cxx index b7a27592ea16..a4ec5e784a82 100644 --- a/vcl/source/control/fixedhyper.cxx +++ b/vcl/source/control/fixedhyper.cxx @@ -77,7 +77,7 @@ void FixedHyperlink::MouseButtonUp( const MouseEvent& ) { // calls the link if the control is enabled and the mouse is over the text. if ( IsEnabled() && ImplIsOverText(GetPointerPosPixel()) ) - ImplCallEventListenersAndHandler( VCLEVENT_BUTTON_CLICK, [this] () { m_aClickHdl.Call(this); } ); + ImplCallEventListenersAndHandler( VCLEVENT_BUTTON_CLICK, [this] () { m_aClickHdl.Call(*this); } ); } void FixedHyperlink::RequestHelp( const HelpEvent& rHEvt ) @@ -106,7 +106,7 @@ void FixedHyperlink::KeyInput( const KeyEvent& rKEvt ) { case KEY_SPACE: case KEY_RETURN: - m_aClickHdl.Call( this ); + m_aClickHdl.Call( *this ); break; default: |