Ref T659, signature so changed livery/modelstring can be set, and/or not send at all

This commit is contained in:
Klaus Basan
2019-07-22 01:37:35 +02:00
committed by Mat Sutcliffe
parent 184e776c8b
commit 2fb207c028
6 changed files with 19 additions and 7 deletions

View File

@@ -348,9 +348,9 @@ namespace BlackCore
return m_dBusInterface->callDBusRet<bool>(QLatin1String("testAddAltitudeOffset"), callsign, offset);
}
CStatusMessage CContextNetworkProxy::connectToNetwork(const CServer &server, INetwork::LoginMode loginMode)
CStatusMessage CContextNetworkProxy::connectToNetwork(const CServer &server, const QString &extraLiveryString, bool sendLiveryString, const QString &extraModelString, bool sendModelString, INetwork::LoginMode loginMode)
{
return m_dBusInterface->callDBusRet<BlackMisc::CStatusMessage>(QLatin1String("connectToNetwork"), server, loginMode);
return m_dBusInterface->callDBusRet<BlackMisc::CStatusMessage>(QLatin1String("connectToNetwork"), server, extraLiveryString, sendLiveryString, extraModelString, sendModelString, loginMode);
}
CStatusMessage CContextNetworkProxy::disconnectFromNetwork()