Simplify MessageLevel::Enum -> MessageLevel

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2025-12-07 12:56:30 +00:00
parent 0fd945b3db
commit fd3ae85d45
No known key found for this signature in database
GPG key ID: 5E39D70B4C93C38E
20 changed files with 62 additions and 64 deletions

View file

@ -241,7 +241,7 @@ void appDebugOutput(QtMsgType type, const QMessageLogContext& context, const QSt
QString out = qFormatLogMessage(type, context, msg);
if (APPLICATION->logModel) {
APPLICATION->logModel->append(MessageLevel::getLevel(type), out);
APPLICATION->logModel->append(messageLevelFromQtMsgType(type), out);
}
out += QChar::LineFeed;