diff --git a/src/kits/interface/ZombieReplicantView.cpp b/src/kits/interface/ZombieReplicantView.cpp index b01285c4ca..f47a86e016 100644 --- a/src/kits/interface/ZombieReplicantView.cpp +++ b/src/kits/interface/ZombieReplicantView.cpp @@ -57,7 +57,7 @@ _BZombieReplicantView_::MessageReceived(BMessage *msg) "Can't create the \"%s\" replicant because the library is in the Trash. (%s)", description, strerror(fError)); - BAlert *alert = new (nothrow) BAlert("Error", error, "OK", NULL, NULL, + BAlert *alert = new (std::nothrow) BAlert("Error", error, "OK", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT); if (alert != NULL) alert->Go(); diff --git a/src/kits/network/init.cpp b/src/kits/network/init.cpp index 3150879c29..4dca5ba28d 100644 --- a/src/kits/network/init.cpp +++ b/src/kits/network/init.cpp @@ -12,6 +12,8 @@ #include #include +#include + bool __gR5Compatibility = false;