mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 17:35:34 +08:00
refs #787, MS review items + discussion on slack
https://dev.vatsim-germany.org/issues/787#note-4
This commit is contained in:
@@ -515,12 +515,9 @@ namespace BlackCore
|
||||
|
||||
void CApplication::processEventsFor(int milliseconds)
|
||||
{
|
||||
const QTime end = QTime::currentTime().addMSecs(milliseconds);
|
||||
while (QTime::currentTime() <= end)
|
||||
{
|
||||
QCoreApplication::processEvents();
|
||||
QThread::msleep(100);
|
||||
}
|
||||
QEventLoop eventLoop;
|
||||
QTimer::singleShot(milliseconds, &eventLoop, &QEventLoop::quit);
|
||||
eventLoop.exec();
|
||||
}
|
||||
|
||||
bool CApplication::useContexts(const CCoreFacadeConfig &coreConfig)
|
||||
|
||||
@@ -148,7 +148,7 @@ namespace BlackCore
|
||||
// Using timer to first finish this function, then the resulting signal
|
||||
if (validInCacheEntities != CEntityFlags::NoEntity)
|
||||
{
|
||||
QTimer::singleShot(10, this, [ = ]
|
||||
QTimer::singleShot(0, this, [ = ]
|
||||
{
|
||||
emit this->dataRead(validInCacheEntities, CEntityFlags::ReadFinished, 0);
|
||||
});
|
||||
|
||||
@@ -291,11 +291,11 @@ namespace BlackCore
|
||||
BlackMisc::CCountry getCountryForName(const QString &name) const;
|
||||
|
||||
//! Get airports
|
||||
//! \\threadsafe
|
||||
//! \threadsafe
|
||||
BlackMisc::Aviation::CAirportList getAirports() const;
|
||||
|
||||
//! Get airports count
|
||||
//! \\threadsafe
|
||||
//! \threadsafe
|
||||
int getAirportsCount() const;
|
||||
|
||||
//! Get METARs
|
||||
|
||||
Reference in New Issue
Block a user