remove unused QtMsgType::QtSystemMsg enum

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2020-03-30 09:04:10 +00:00
parent f121000888
commit abb497201d
2 changed files with 1 additions and 3 deletions

View file

@ -661,8 +661,6 @@ QT_BEGIN_NAMESPACE
A message generated by the qCritical() function.
\value QtFatalMsg
A message generated by the qFatal() function.
\value QtSystemMsg
\sa QtMsgHandler, qInstallMsgHandler()
*/

View file

@ -698,7 +698,7 @@ inline T *q_check_ptr(T *p) { Q_CHECK_PTR(p); return p; }
# define Q_FUNC_INFO __func__
#endif
enum QtMsgType { QtDebugMsg, QtWarningMsg, QtCriticalMsg, QtFatalMsg, QtSystemMsg = QtCriticalMsg };
enum QtMsgType { QtDebugMsg, QtWarningMsg, QtCriticalMsg, QtFatalMsg };
Q_CORE_EXPORT void qt_message_output(QtMsgType, const char *buf);