diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-21 18:02:15 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-07-21 18:02:15 -0500 |
commit | 08390bda6cc11917a625253a98e48da9b0aac8e6 (patch) | |
tree | 1eb1a63da7a0b43619576ff850c2331552f01461 /ksmserver/server.cpp | |
parent | 1eb5bc816598318458e3a6459663af103a46094b (diff) | |
download | tdebase-08390bda6cc11917a625253a98e48da9b0aac8e6.tar.gz tdebase-08390bda6cc11917a625253a98e48da9b0aac8e6.zip |
Allow the user to manually abort a stalled SaveYourself process
This partially resolves Bug 760
Diffstat (limited to 'ksmserver/server.cpp')
-rw-r--r-- | ksmserver/server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ksmserver/server.cpp b/ksmserver/server.cpp index 6e3ed44a3..3adcbbade 100644 --- a/ksmserver/server.cpp +++ b/ksmserver/server.cpp @@ -681,6 +681,7 @@ KSMServer::KSMServer( const TQString& windowManager, const TQString& windowManag signal(SIGINT, sighandler); signal(SIGPIPE, SIG_IGN); + connect( ¬ificationTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( notificationTimeout() ) ); connect( &protectionTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( protectionTimeout() ) ); connect( &restoreTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( tryRestoreNext() ) ); connect( &shutdownTimer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( timeoutQuit() ) ); |