mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 01:05:34 +08:00
refs #641, moved last simulator selection to caches
* removed from component cache * kept renamed component caches as stubs for later usage refs #646, removed gui state cache as it causes build issues on Jenkins (idea was to keep the classes as stubs for later usage)
This commit is contained in:
@@ -100,11 +100,11 @@ namespace BlackMisc
|
||||
this->setCachedModels(models); // not thread safe
|
||||
}
|
||||
// currently I treat no data as error
|
||||
emit this->loadingFinished(hasData, this->m_simulatorInfo);
|
||||
emit this->loadingFinished(hasData, this->getSimulator());
|
||||
}
|
||||
else
|
||||
{
|
||||
emit this->loadingFinished(false, this->m_simulatorInfo);
|
||||
emit this->loadingFinished(false, this->getSimulator());
|
||||
}
|
||||
});
|
||||
}
|
||||
@@ -120,7 +120,7 @@ namespace BlackMisc
|
||||
this->setCachedModels(models); // not thread safe
|
||||
}
|
||||
// currently I treat no data as error
|
||||
emit this->loadingFinished(hasData, this->m_simulatorInfo);
|
||||
emit this->loadingFinished(hasData, this->getSimulator());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -128,7 +128,7 @@ namespace BlackMisc
|
||||
{
|
||||
if (this->hasCachedData())
|
||||
{
|
||||
emit this->loadingFinished(true, this->m_simulatorInfo);
|
||||
emit this->loadingFinished(true, this->getSimulator());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user