Skip to content

Commit

Permalink
Merge pull request f4exb#2122 from srcejon/freq_scanner
Browse files Browse the repository at this point in the history
Morse feature: Fix for Qt6 and Windows.
  • Loading branch information
f4exb authored May 24, 2024
2 parents 1d87e1e + 7766516 commit f79ae3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/feature/morsedecoder/morsedecoderworker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit f79ae3a

Please sign in to comment.