mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +08:00
Ref T658, matching script QObject
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user