Merge branch 'upstream-KWSys' into win-no-error-popup
* upstream-KWSys: KWSys 2019-11-15 (329d8c7c)
This commit is contained in:
commit
0b9f1cc96b
@ -4666,8 +4666,12 @@ void SystemTools::ClassFinalize()
|
||||
# include <stdlib.h>
|
||||
namespace KWSYS_NAMESPACE {
|
||||
|
||||
static int SystemToolsDebugReport(int, char* message, int*)
|
||||
static int SystemToolsDebugReport(int, char* message, int* ret)
|
||||
{
|
||||
if (ret) {
|
||||
// Pretend user clicked on Retry button in popup.
|
||||
*ret = 1;
|
||||
}
|
||||
fprintf(stderr, "%s", message);
|
||||
fflush(stderr);
|
||||
return 1; // no further reporting required
|
||||
|
Loading…
Reference in New Issue
Block a user