Propagate task warnings

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2025-04-29 16:46:11 +01:00
parent acdb8c5578
commit 24036021bb
No known key found for this signature in database
GPG key ID: 5E39D70B4C93C38E
3 changed files with 8 additions and 0 deletions

View file

@ -196,6 +196,8 @@ void Task::logWarning(const QString& line)
{
qWarning() << line;
m_Warnings.append(line);
emit warningLogged(line);
}
QStringList Task::warnings() const