From 3d1e04c556f5246b6628e81c93ad0abbfae32ec7 Mon Sep 17 00:00:00 2001 From: Phil Taylor Date: Thu, 27 Jan 2022 22:52:50 +0000 Subject: [PATCH] Fix compile issue --- udpserver.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/udpserver.cpp b/udpserver.cpp index 8bae034..7b3ad4f 100644 --- a/udpserver.cpp +++ b/udpserver.cpp @@ -371,7 +371,7 @@ void udpServer::controlReceived() radio->txaudio->init(radio->txAudioSetup); }, Qt::QueuedConnection); #else - #warn "QT 5.9 is not fully supported" + #warning "QT 5.9 is not fully supported" #endif emit setupTxAudio(outAudio); @@ -410,7 +410,7 @@ void udpServer::controlReceived() radio->rxaudio->init(radio->rxAudioSetup); }, Qt::QueuedConnection); #else - #warn "QT 5.9 is not fully supported" + #warning "QT 5.9 is not fully supported" #endif radio->rxAudioTimer = new QTimer(); @@ -583,7 +583,7 @@ void udpServer::civReceived() radio->rig->dataFromServer(r.mid(0x15));; }, Qt::DirectConnection); #else - #warn "QT 5.9 is not fully supported" + #warning "QT 5.9 is not fully supported" #endif }