if opening a document failed because the system is shutting down, don't ask the user if he wants to open the document with another application, since that would fail as well.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30358 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini
2009-04-24 05:11:56 +00:00
parent 60553668bc
commit 33ce19159d
+1 -1
View File
@@ -2932,7 +2932,7 @@ _TrackerLaunchAppWithDocuments(const entry_ref *appRef, const BMessage *refs, bo
dynamic_cast<TTracker *>(be_app)->CloseParent(*nodeToClose);
} else {
alertString << "Could not open \"" << appRef->name << "\" (" << strerror(error) << "). ";
if (refs && openWithOK) {
if (refs && openWithOK && error != B_SHUTTING_DOWN) {
alertString << kFindAlternativeStr;
BAlert *alert = new BAlert("", alertString.String(),
"Cancel", "Find", 0, B_WIDTH_AS_USUAL, B_WARNING_ALERT);