Let's use SIGKILL instead of just SIGTERM. The user has to explicitly

confirm killing the app anyway, and some stuck apps might not exit on SIGTERM.

svn path=/trunk/kdebase/kwin/; revision=261231
icc-effect-5.14.5
Luboš Luňák 2003-10-23 09:29:00 +00:00
parent fffdc0d01a
commit 7d10a9a2c9
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ int main( int argc, char* argv[] )
proc.start( KProcess::DontCare );
}
else
::kill( pid, SIGTERM );
::kill( pid, SIGKILL );
XKillClient( qt_xdisplay(), id );
}
}