Merge pull request #2122 from srcejon/freq_scanner

Morse feature: Fix for Qt6 and Windows.
pull/2126/head
Edouard Griffiths 2024-05-24 11:35:00 +02:00 zatwierdzone przez GitHub
commit f79ae3ac71
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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();