From b793e7b72cd4f0465333bb37d2d10a41ccedd65a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 23 Apr 2006 18:15:05 +0000 Subject: [PATCH] No longer hide the "Application X has aborted the shutdown process" message when that application quits; this just prevented us to see who the culprit is. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17213 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/registrar/ShutdownProcess.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/servers/registrar/ShutdownProcess.cpp b/src/servers/registrar/ShutdownProcess.cpp index 58da1be569..44d3a51ce6 100644 --- a/src/servers/registrar/ShutdownProcess.cpp +++ b/src/servers/registrar/ShutdownProcess.cpp @@ -1751,9 +1751,13 @@ ShutdownProcess::_DisplayAbortingApp(team_id team) if (event == ABORT_EVENT && phase == ABORTED_PHASE && eventTeam < 0) break; +// This doesn't give us anything; it will just prevent us to see which +// app was responsible after all... +#if 0 // also stop when the responsible app quit if ((event == APP_QUIT_EVENT) && eventTeam == team) break; +#endif } }