diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-08 16:32:13 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-08 16:32:13 -0500 |
commit | ed0819821bee9faa03303387351bd85937e8e50c (patch) | |
tree | cb0a09587b30c698b8191e29673f4e350c1da93d | |
parent | a669fb0c5937ac2cc55e564cb6607c221dc61efd (diff) | |
download | tdebase-ed0819821bee9faa03303387351bd85937e8e50c.tar.gz tdebase-ed0819821bee9faa03303387351bd85937e8e50c.zip |
Attempt to fix report of logout status dialog not appearing after client interaction
This relates to Bug 760
-rw-r--r-- | ksmserver/shutdown.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ksmserver/shutdown.cpp b/ksmserver/shutdown.cpp index cc6e8ab7c..32e7c3b19 100644 --- a/ksmserver/shutdown.cpp +++ b/ksmserver/shutdown.cpp @@ -681,6 +681,7 @@ void KSMServer::handleProtectionTimeout() notificationTimer.stop(); if (shutdownNotifierIPDlg) { static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->hideNotificationActionButtons(); + static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->show(); static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->setStatusMessage(i18n("Forcing interacting application termination").append("...")); } @@ -730,6 +731,7 @@ void KSMServer::completeShutdownOrCheckpoint() if ( waitForPhase2 ) { SHUTDOWN_MARKER("completeShutdownOrCheckpoint state still waiting for Phase 2"); if (shutdownNotifierIPDlg) { + static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->show(); static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->setStatusMessage(i18n("Notifying remaining applications of logout request...")); notificationTimer.start( KSMSERVER_NOTIFICATION_MANUAL_OPTIONS_TIMEOUT, true ); } @@ -759,11 +761,13 @@ void KSMServer::completeShutdownOrCheckpoint() // synchronize any folders that were requested for shutdown sync if (shutdownNotifierIPDlg) { + static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->show(); static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->setStatusMessage(i18n("Synchronizing remote folders").append("...")); } KRsync krs(this, ""); krs.executeLogoutAutoSync(); if (shutdownNotifierIPDlg) { + static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->show(); static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->setStatusMessage(i18n("Saving your settings...")); } @@ -795,6 +799,7 @@ void KSMServer::completeShutdownOrCheckpoint() } initialClientCount = clients.count(); if (shutdownNotifierIPDlg) { + static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->show(); TQString nextClientToKill; TQDateTime currentDateTime = TQDateTime::currentDateTime(); TQDateTime oldestFoundDateTime = currentDateTime; @@ -878,6 +883,7 @@ void KSMServer::completeKilling() } if( wait ) { if (shutdownNotifierIPDlg) { + static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->show(); if (nextClientToKill == "") { static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->setStatusMessage(i18n("Closing applications (%1/%2)...").arg(initialClientCount-clients.count()).arg(initialClientCount)); } @@ -889,6 +895,7 @@ void KSMServer::completeKilling() } else { if (shutdownNotifierIPDlg) { + static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->show(); static_cast<KSMShutdownIPDlg*>(shutdownNotifierIPDlg)->setStatusMessage(i18n("Terminating services...")); } } |