summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2015-07-14 12:51:04 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-07-16 09:18:45 +0000
commitfe1e767e3397da41051a20ae6c80be5e123d07ba (patch)
tree64e55abe604d14be3dacd24948db5d6c7922684d /vcl/source
parentfdc0b506538560e13127a44a7de817412c13035b (diff)
tdf#92706 - avoid dbaccess wizard crash.
Hold a VclPtr on the window, make reset cleaner, and don't crash removing listeners from disposed windows. Change-Id: I3efb71117fc45562d5c740578f5e33dabb2684fe Reviewed-on: https://gerrit.libreoffice.org/17038 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/window/event.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/source/window/event.cxx b/vcl/source/window/event.cxx
index 61c11ab20bdd..852cc0c56938 100644
--- a/vcl/source/window/event.cxx
+++ b/vcl/source/window/event.cxx
@@ -249,7 +249,8 @@ void Window::AddEventListener( const Link<>& rEventListener )
void Window::RemoveEventListener( const Link<>& rEventListener )
{
- mpWindowImpl->maEventListeners.removeListener( rEventListener );
+ if (mpWindowImpl)
+ mpWindowImpl->maEventListeners.removeListener( rEventListener );
}
void Window::AddChildEventListener( const Link<>& rEventListener )
@@ -259,7 +260,8 @@ void Window::AddChildEventListener( const Link<>& rEventListener )
void Window::RemoveChildEventListener( const Link<>& rEventListener )
{
- mpWindowImpl->maChildEventListeners.removeListener( rEventListener );
+ if (mpWindowImpl)
+ mpWindowImpl->maChildEventListeners.removeListener( rEventListener );
}
ImplSVEvent * Window::PostUserEvent( const Link<>& rLink, void* pCaller, bool bReferenceLink )