summaryrefslogtreecommitdiff
path: root/vcl/source/window/event.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/event.cxx')
-rw-r--r--vcl/source/window/event.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/source/window/event.cxx b/vcl/source/window/event.cxx
index 9c954125779d..bd2b36d39c39 100644
--- a/vcl/source/window/event.cxx
+++ b/vcl/source/window/event.cxx
@@ -243,31 +243,31 @@ void Window::FireVclEvent( VclSimpleEvent* pEvent )
Application::ImplCallEventListeners(pEvent);
}
-void Window::AddEventListener( const Link& rEventListener )
+void Window::AddEventListener( const Link<>& rEventListener )
{
mpWindowImpl->maEventListeners.addListener( rEventListener );
}
-void Window::RemoveEventListener( const Link& rEventListener )
+void Window::RemoveEventListener( const Link<>& rEventListener )
{
mpWindowImpl->maEventListeners.removeListener( rEventListener );
}
-void Window::AddChildEventListener( const Link& rEventListener )
+void Window::AddChildEventListener( const Link<>& rEventListener )
{
mpWindowImpl->maChildEventListeners.addListener( rEventListener );
}
-void Window::RemoveChildEventListener( const Link& rEventListener )
+void Window::RemoveChildEventListener( const Link<>& rEventListener )
{
mpWindowImpl->maChildEventListeners.removeListener( rEventListener );
}
-ImplSVEvent * Window::PostUserEvent( const Link& rLink, void* pCaller )
+ImplSVEvent * Window::PostUserEvent( const Link<>& rLink, void* pCaller )
{
ImplSVEvent* pSVEvent = new ImplSVEvent;
pSVEvent->mpData = pCaller;
- pSVEvent->mpLink = new Link( rLink );
+ pSVEvent->mpLink = new Link<>( rLink );
pSVEvent->mpWindow = this;
pSVEvent->mbCall = true;
ImplAddDel( &(pSVEvent->maDelData) );