Replaced QLatin1Literal by QLatin1String

refs #883
This commit is contained in:
Klaus Basan
2017-02-20 05:38:51 +01:00
committed by Mathew Sutcliffe
parent c693423905
commit 060a10dfb6
21 changed files with 309 additions and 309 deletions

View File

@@ -106,13 +106,13 @@ namespace BlackGui
QString i(aircraft.getCallsign().toQString());
if (aircraft.hasAircraftDesignator())
{
i += QLatin1Literal(" (") %
i += QLatin1String(" (") %
aircraft.getAircraftIcaoCode().toQString(false) %
QLatin1Literal(")");
QLatin1String(")");
}
if (aircraft.hasValidRealName())
{
i += QLatin1Literal(" - ") % aircraft.getPilotRealName();
i += QLatin1String(" - ") % aircraft.getPilotRealName();
}
if (m_showPartsEnabled)
{