No "core dumps" on Windows, and not on iOS or Android either

Change-Id: Ie5d3257d3a289856399f7a3266e3caf66831e00a
This commit is contained in:
Tor Lillqvist
2013-01-11 09:41:50 +02:00
parent 90ef2f1d63
commit 9b0ab09b45

View File

@@ -1662,7 +1662,13 @@ void DbgPrintMsgBox( const char* pLine )
}
strcpy( aDbgOutBuf, pLine );
#if defined UNX && !(defined ANDROID || defined IOS)
strcat( aDbgOutBuf, "\nAbort ? (Yes=abort / No=ignore / Cancel=core dump)" );
#elif defined _WIN32
strcat( aDbgOutBuf, "\nAbort ? (Yes=abort / No=ignore / Cancel=try to invoke debugger)" );
#else
strcat( aDbgOutBuf, "\nAbort ? (Yes=abort / No=ignore / Cancel=crash)" );
#endif
SolarMessageBoxExecutor aMessageBox( String( aDbgOutBuf, RTL_TEXTENCODING_UTF8 ) );
TimeValue aTimeout; aTimeout.Seconds = 2; aTimeout.Nanosec = 0;