Remove colour in dbus call for addTextMessage for FG

This commit is contained in:
Lars Toenning
2019-02-21 21:57:57 +01:00
committed by Mat Sutcliffe
parent 8bae56a36c
commit ce9e29f0e8
3 changed files with 5 additions and 20 deletions

View File

@@ -67,9 +67,9 @@ namespace BlackSimPlugin
m_dbusInterface->callDBusAsync(QLatin1String("getOwnAircraftSituationData"), callback);
}
void CXSwiftBusServiceProxy::addTextMessage(const QString &text, double red, double green, double blue)
void CXSwiftBusServiceProxy::addTextMessage(const QString &text)
{
m_dbusInterface->callDBus(QLatin1String("addTextMessage"), text, red, green, blue);
m_dbusInterface->callDBus(QLatin1String("addTextMessage"), text);
}
void CXSwiftBusServiceProxy::updateAirportsInRange()