LaunchBox: remove redundant Locking. Thanks Stippi!

This commit is contained in:
Philippe Saint-Pierre 2012-12-13 19:35:51 -05:00
parent bafbb92901
commit 8a24526e3f
1 changed files with 11 additions and 13 deletions

View File

@ -91,20 +91,18 @@ MainWindow::QuitRequested()
padWindowCount++;
}
bool canClose = true;
if (Lock()) {
if (padWindowCount == 1) {
be_app->PostMessage(B_QUIT_REQUESTED);
if (padWindowCount == 1) {
be_app->PostMessage(B_QUIT_REQUESTED);
canClose = false;
} else {
BAlert* alert = new BAlert(B_TRANSLATE("last chance"),
B_TRANSLATE("Really close this pad?\n"
"(The pad will not be remembered.)"),
B_TRANSLATE("Close"), B_TRANSLATE("Cancel"), NULL);
alert->SetShortcut(1, B_ESCAPE);
if (alert->Go() == 1)
canClose = false;
} else {
BAlert* alert = new BAlert(B_TRANSLATE("last chance"),
B_TRANSLATE("Really close this pad?\n"
"(The pad will not be remembered.)"),
B_TRANSLATE("Close"), B_TRANSLATE("Cancel"), NULL);
alert->SetShortcut(1, B_ESCAPE);
if (alert->Go() == 1)
canClose = false;
}
Unlock();
}
return canClose;
}