This commit is contained in:
Klaus Basan
2019-11-01 20:07:48 +01:00
committed by Mat Sutcliffe
parent 8194726857
commit 53de0d56b9
9 changed files with 14 additions and 13 deletions

View File

@@ -461,7 +461,7 @@ namespace BlackCore
// threadsafe copies
const auto transceivers = this->getTransceivers();
const auto enabledTransceivers = this->getEnabledTransceivers();
const QString callsign = this->getCallsign();
const QString callsign = this->getCallsign(); // threadsafe
// transceivers
QVector<TransceiverDto> newEnabledTransceivers;
@@ -963,7 +963,7 @@ namespace BlackCore
}
// in connection and soundcard only use the enabled tarnsceivers
const QString callsign = this->getCallsign();
const QString callsign = this->getCallsign(); // threadsafe
{
{
QMutexLocker lock(&m_mutexConnection);

View File

@@ -89,7 +89,7 @@ namespace BlackCore
//! Connect to network
//! \threadsafe
//! \remark runs in thread of CAfvClient object and is ASYNC when called from another thread
Q_INVOKABLE void connectTo(const QString &cid, const QString &password, const QString &getCallsign, const QString &client);
Q_INVOKABLE void connectTo(const QString &cid, const QString &password, const QString &callsign, const QString &client);
//! Disconnect from network
//! \threadsafe