1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-06-13 03:52:30 -04:00

Fix build with Qt 6.9.0.

This commit is contained in:
Jon Beniston 2025-04-21 10:59:54 +01:00
parent 1c6b167527
commit 60869b74f9
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"