diff --git a/Source/NSApplication.m b/Source/NSApplication.m index 43d339761..2aa36b753 100644 --- a/Source/NSApplication.m +++ b/Source/NSApplication.m @@ -103,10 +103,11 @@ _NSAppKitUncaughtExceptionHandler (NSException *exception) defaultUncaughtExceptionHandler (exception); } - retVal = NSRunCriticalAlertPanel ([[NSProcessInfo processInfo] processName], - @"%@: %@", - @"Abort", @"Ignore", DEBUG_BUTTON, - [exception name], [exception reason]); + retVal = NSRunCriticalAlertPanel + ([NSString stringWithFormat: @"Critical Error in %@", + [[NSProcessInfo processInfo] processName]], + @"%@: %@", @"Abort", @"Ignore", DEBUG_BUTTON, + [exception name], [exception reason]); /* The user wants to abort */ if (retVal == NSAlertDefault)