This commit is contained in:
Klaus Basan
2019-10-17 17:17:53 +02:00
parent 439f76c9bb
commit 35cdaf09bf
2 changed files with 2 additions and 1 deletions

View File

@@ -733,9 +733,9 @@ namespace BlackCore
{ {
Q_ASSERT(CThreadUtils::isCurrentThreadObjectThread(this)); Q_ASSERT(CThreadUtils::isCurrentThreadObjectThread(this));
if (!this->isConnectedAndNotShuttingDown()) { return; } if (!this->isConnectedAndNotShuttingDown()) { return; }
return;
Q_UNUSED(url) Q_UNUSED(url)
Q_UNUSED(callsign) Q_UNUSED(callsign)
return;
} }
void CAirspaceMonitor::onAtisLogoffTimeReceived(const CCallsign &callsign, const QString &zuluTime) void CAirspaceMonitor::onAtisLogoffTimeReceived(const CCallsign &callsign, const QString &zuluTime)

View File

@@ -425,6 +425,7 @@ namespace BlackCore
void CContextOwnAircraft::xCtxChangedAtcStationOnlineConnectionStatus(const CAtcStation &atcStation, bool connected) void CContextOwnAircraft::xCtxChangedAtcStationOnlineConnectionStatus(const CAtcStation &atcStation, bool connected)
{ {
// any of our active frequencies? // any of our active frequencies?
// keep this to play notification sounds maybe
Q_UNUSED(connected) Q_UNUSED(connected)
Q_UNUSED(atcStation) Q_UNUSED(atcStation)
} }