mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-26 01:39:05 -05:00
Merge pull request #2122 from srcejon/freq_scanner
Morse feature: Fix for Qt6 and Windows.
This commit is contained in:
commit
f79ae3ac71
@ -188,7 +188,7 @@ int MorseDecoderWorker::processBuffer(QByteArray& bytesBuffer)
|
|||||||
std::for_each(
|
std::for_each(
|
||||||
dst.begin(),
|
dst.begin(),
|
||||||
dst.end(),
|
dst.end(),
|
||||||
[&](const uint8_t c) { text.append(c); }
|
[&](const uint8_t c) { text.append((char) c); }
|
||||||
);
|
);
|
||||||
|
|
||||||
const GGMorse::Statistics& stats = m_ggMorse->getStatistics();
|
const GGMorse::Statistics& stats = m_ggMorse->getStatistics();
|
||||||
|
Loading…
Reference in New Issue
Block a user