LaunchBox: remove redundant Locking. Thanks Stippi!

This commit is contained in:
Philippe Saint-Pierre
2012-12-13 19:38:08 -05:00
parent bafbb92901
commit 8a24526e3f
+11 -13
View File
@@ -91,20 +91,18 @@ MainWindow::QuitRequested()
padWindowCount++; padWindowCount++;
} }
bool canClose = true; bool canClose = true;
if (Lock()) {
if (padWindowCount == 1) { if (padWindowCount == 1) {
be_app->PostMessage(B_QUIT_REQUESTED); 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; 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; return canClose;
} }