Do not expose QtInfoMsg on Qt < 5.5.0

This commit is contained in:
codestation
2016-01-10 10:19:59 -04:30
parent 6d9fc0ff7a
commit e605f051ea

View File

@@ -57,9 +57,11 @@ static void noDebugOutput(QtMsgType type, const char *message)
fprintf(stderr, "Fatal: %s\n", message);
abort();
break;
#if QT_VERSION >= QT_VERSION_CHECK(5, 5, 0)
case QtInfoMsg:
fprintf(stderr, "Info: %s\n", message);
break;
#endif
}
}