diff --git a/src/blackmisc/network/rawfsdmessage.cpp b/src/blackmisc/network/rawfsdmessage.cpp index 1173b68d0..e40362f4d 100644 --- a/src/blackmisc/network/rawfsdmessage.cpp +++ b/src/blackmisc/network/rawfsdmessage.cpp @@ -28,7 +28,7 @@ namespace BlackMisc QString CRawFsdMessage::convertToQString(bool i18n) const { - Q_UNUSED(i18n); + Q_UNUSED(i18n) return QStringLiteral("%1 %2").arg(this->getFormattedUtcTimestampHmsz(), m_rawMessage); } diff --git a/src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp b/src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp index 34f485140..80687291e 100644 --- a/src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp +++ b/src/plugins/simulator/fsxcommon/simulatorfsxcommon.cpp @@ -642,7 +642,7 @@ namespace BlackSimPlugin static const QString format("hh:mm:ss.zzz"); const QString untilString = QDateTime::fromMSecsSinceEpoch(traceUntil).toString(format); - CLogMessage(this).info(u"Triggered auto trace until %1") << untilString; + CLogMessage(this).info(u"Triggered FSX/P3D auto trace until %1") << untilString; const QPointer myself(this); QTimer::singleShot(traceTimeMs * 1.2, this, [ = ] {