From 1c99cb5555f3d37af27ad975ed0c0fa847e4a7ed Mon Sep 17 00:00:00 2001 From: Jaime Torres Amate Date: Wed, 5 Aug 2009 16:26:44 +0000 Subject: [PATCH] The removed line said: for KDE_signal, remove in KDEPIM 4.2 It will be removed for KDEPIM 4.4 instead. Also remove the handle for SIGKILL, that is impossible to handle. svn path=/trunk/KDE/kdepim/; revision=1007365 --- kmstartup.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/kmstartup.cpp b/kmstartup.cpp index 1d7dd57a3..251945bac 100644 --- a/kmstartup.cpp +++ b/kmstartup.cpp @@ -18,7 +18,6 @@ #include "kmstartup.h" -#include // for KDE_signal, remove in KDEPIM 4.2 #include "kmkernel.h" //control center #include "kcursorsaver.h" @@ -74,7 +73,6 @@ void kmcrashHandler(int sigId) void kmsetSignalHandler(void (*handler)(int)) { - KDE_signal(SIGKILL, handler); KDE_signal(SIGTERM, handler); KDE_signal(SIGHUP, handler); KCrash::setEmergencySaveFunction(kmcrashHandler);