Fixed clazy warnings: QString::arg.

This commit is contained in:
Mat Sutcliffe
2018-12-19 18:51:02 +00:00
parent b4724996c6
commit db928c8b0e
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ namespace BlackCore
// No one else is using this voice room, so prepare to join
m_voiceRoom = voiceRoom;
QString callsign = QString("%1 (%2)").arg(m_callsign.toQString()).arg(m_userId);
QString callsign = QString("%1 (%2)").arg(m_callsign.toQString(), m_userId);
Vat_SetRoomInfo(m_voiceChannel.data(), qPrintable(voiceRoom.getHostname()), 3782,
qPrintable(voiceRoom.getChannel()),
qPrintable(callsign));