1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-06-12 19:42:34 -04:00

Merge pull request #2439 from srcejon/fix_qt_6_9

Fix build with Qt 6.9.0.
This commit is contained in:
Edouard Griffiths 2025-04-21 14:34:01 +02:00 committed by GitHub
commit 2e1411311b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 1 deletions

View File

@ -354,7 +354,7 @@ void NavtexDemodSink::receiveBit(bool bit)
getMessageQueueToChannel()->push(msg);
}
// Add character to message buffer
m_messageBuffer.append(QChar(c));
m_messageBuffer.append(QChar((char) c));
}
else
{

View File

@ -17,6 +17,7 @@
#include <QMutexLocker>
#include <QThread>
#include <QDebug>
#include <boost/crc.hpp>
#include <boost/cstdint.hpp>

View File

@ -15,6 +15,8 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <QDebug>
#include <boost/crc.hpp>
#include <boost/cstdint.hpp>

View File

@ -16,6 +16,8 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <QDebug>
#include "dsp/samplemififo.h"
#include "dsp/samplemofifo.h"