diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-13 20:30:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-14 15:55:54 +0100 |
commit | 7bf9ab8e4ece6faf2dc85e62e95ee5a9b5585a6e (patch) | |
tree | e0b0baa03a70be7ea4e10aaf4c1f71024ff5568f | |
parent | 4d8cccbdacc58ee2def5cc38a4ef92734414aac2 (diff) |
surely we only care if *our* window is shown here
Change-Id: Ia5bca11c0c24ed7ca301dbe15eca3dc684153ea8
-rw-r--r-- | desktop/source/splash/splash.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx index d0378ad58454..a37ba75366ab 100644 --- a/desktop/source/splash/splash.cxx +++ b/desktop/source/splash/splash.cxx @@ -368,7 +368,7 @@ void SplashScreen::updateStatus() // internal private methods IMPL_LINK( SplashScreen, AppEventListenerHdl, VclWindowEvent *, inEvent ) { - if ( inEvent != 0 ) + if (inEvent != 0 && inEvent->GetWindow() == pWindow) { switch ( inEvent->GetId() ) { |