diff --git a/src/apps/haikudepot/model/PackageManager.cpp b/src/apps/haikudepot/model/PackageManager.cpp index 309fd60980..1493f4e761 100644 --- a/src/apps/haikudepot/model/PackageManager.cpp +++ b/src/apps/haikudepot/model/PackageManager.cpp @@ -147,7 +147,8 @@ public: "%s (%s)\n", packageNameString, ex.Message().String(), ex.Details().String()); BAlert* alert(new(std::nothrow) BAlert(B_TRANSLATE("Fatal error"), - errorString, B_TRANSLATE("Close"))); + errorString, B_TRANSLATE("Close"), NULL, NULL, + B_WIDTH_AS_USUAL, B_STOP_ALERT)); if (alert != NULL) alert->Go(NULL); return ex.Error(); @@ -252,7 +253,8 @@ public: "%s (%s)\n", packageName, ex.Message().String(), ex.Details().String()); BAlert* alert(new(std::nothrow) BAlert(B_TRANSLATE("Fatal error"), - errorString, B_TRANSLATE("Close"))); + errorString, B_TRANSLATE("Close"), NULL, NULL, + B_WIDTH_AS_USUAL, B_STOP_ALERT)); if (alert != NULL) alert->Go(NULL); return ex.Error();