Fixed shutting down apps with file panels - no more hang:

* if file panels shouldn't be quit, we no longer call QuitRequested() for
  them and stop quitting windows (which left normal windows open, because
  file panels always return "false" in QuitRequested())


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15715 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2005-12-29 14:49:28 +00:00
parent cd2b129d07
commit 9f8f6275f6
2 changed files with 9 additions and 6 deletions
+2 -3
View File
@@ -2949,10 +2949,9 @@ BWindow::_LastViewChild(BView *parent)
void
BWindow::SetIsFilePanel(bool yes)
BWindow::SetIsFilePanel(bool isFilePanel)
{
// TODO: is this not enough?
fIsFilePanel = yes;
fIsFilePanel = isFilePanel;
}