Merge pull request #2122 from srcejon/freq_scanner

Morse feature: Fix for Qt6 and Windows.
This commit is contained in:
Edouard Griffiths 2024-05-24 11:35:00 +02:00 committed by GitHub
commit f79ae3ac71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ int MorseDecoderWorker::processBuffer(QByteArray& bytesBuffer)
std::for_each(
dst.begin(),
dst.end(),
[&](const uint8_t c) { text.append(c); }
[&](const uint8_t c) { text.append((char) c); }
);
const GGMorse::Statistics& stats = m_ggMorse->getStatistics();