summaryrefslogtreecommitdiffstats
path: root/kded/kded.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kded/kded.cpp')
-rw-r--r--kded/kded.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/kded/kded.cpp b/kded/kded.cpp
index c7a0aa221..e1b3b6b33 100644
--- a/kded/kded.cpp
+++ b/kded/kded.cpp
@@ -441,13 +441,17 @@ void Kded::updateResourceList()
void Kded::crashHandler(int)
{
DCOPClient::emergencyClose();
- if (_self) // Don't restart if we were closing down
- system("kded");
-tqWarning("Last DCOP call before KDED crash was from application '%s'\n"
+ if (_self) { // Don't restart if we were closing down
+ tqWarning("Last DCOP call before KDED crash was from application '%s'\n"
"to object '%s', function '%s'.",
DCOPClient::postMortemSender(),
DCOPClient::postMortemObject(),
DCOPClient::postMortemFunction());
+ tqWarning("Restarting KDED...\n");
+ if (system("kded") < 0) {
+ tqWarning("Unable to restart KDED!\n");
+ }
+ }
}
void Kded::installCrashHandler()