summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-13 20:30:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-14 15:55:54 +0100
commit7bf9ab8e4ece6faf2dc85e62e95ee5a9b5585a6e (patch)
treee0b0baa03a70be7ea4e10aaf4c1f71024ff5568f /desktop
parent4d8cccbdacc58ee2def5cc38a4ef92734414aac2 (diff)
surely we only care if *our* window is shown here
Change-Id: Ia5bca11c0c24ed7ca301dbe15eca3dc684153ea8
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/splash/splash.cxx2
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() )
{