summaryrefslogtreecommitdiff
path: root/vcl/source/window/event.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-06-13 17:53:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-13 17:54:36 +0200
commit17b1cf0a0384cb2851cde023adadfefe76d41045 (patch)
tree7d325fe8cd7697dbbc58325159a8244083d589e3 /vcl/source/window/event.cxx
parentf751e4b15256e53413395691f9ac50acaa5598eb (diff)
loplugin:staticcall
Change-Id: I16195f2278ae67f17db55e02bb38fe3c5cd063be
Diffstat (limited to 'vcl/source/window/event.cxx')
-rw-r--r--vcl/source/window/event.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/event.cxx b/vcl/source/window/event.cxx
index 66e2d74fd06a..b7176cbf9af4 100644
--- a/vcl/source/window/event.cxx
+++ b/vcl/source/window/event.cxx
@@ -213,7 +213,7 @@ void Window::CallEventListeners( sal_uLong nEvent, void* pData )
ImplDelData aDelData;
ImplAddDel( &aDelData );
- ImplGetSVData()->mpApp->ImplCallEventListeners( &aEvent );
+ Application::ImplCallEventListeners( &aEvent );
if ( aDelData.IsDead() )
return;
@@ -243,7 +243,7 @@ void Window::CallEventListeners( sal_uLong nEvent, void* pData )
void Window::FireVclEvent( VclSimpleEvent* pEvent )
{
- ImplGetSVData()->mpApp->ImplCallEventListeners(pEvent);
+ Application::ImplCallEventListeners(pEvent);
}
void Window::AddEventListener( const Link& rEventListener )