Ref T658, matching script QObject

This commit is contained in:
Klaus Basan
2019-05-21 15:20:28 +02:00
parent 475d23c3da
commit 767961dfa8
3 changed files with 72 additions and 14 deletions

View File

@@ -60,5 +60,27 @@ namespace BlackMisc
m_livery = livery;
emit this->liveryChanged();
}
void MSSwiftValues::setLogMessage(const QString &msg)
{
if (msg == m_logMessage) { return; }
m_logMessage = msg;
emit this->logMessageChanged();
}
void MSSwiftValues::setModified(bool modified)
{
if (modified == m_modified) { return; }
m_modified = modified;
emit this->modifiedChanged();
}
void MSSwiftValues::setRerun(bool rerun)
{
if (rerun == m_rerun) { return; }
m_rerun = rerun;
emit this->rerunChanged();
}
} // namespace
} // namespace