Morse feature: Add cast to fix build on Qt6.

This commit is contained in:
srcejon 2024-05-24 09:20:44 +01:00
parent 1d87e1e051
commit 77665162b7
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();