From 8217b12bc290f98537c60c24fa01c1859c38eb02 Mon Sep 17 00:00:00 2001 From: Phil Taylor Date: Mon, 2 May 2022 16:13:47 +0100 Subject: [PATCH] Update udpserver.cpp --- udpserver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/udpserver.cpp b/udpserver.cpp index 365cc03..6d6cb5c 100644 --- a/udpserver.cpp +++ b/udpserver.cpp @@ -368,7 +368,7 @@ void udpServer::controlReceived() radio->txaudio = new audioHandler(); radio->txAudioThread = new QThread(this); - radio->txAudioThread->setObjectName("server txAudio()"); + radio->txAudioThread->setObjectName("txAudio()"); radio->txaudio->moveToThread(radio->txAudioThread); @@ -411,7 +411,7 @@ void udpServer::controlReceived() radio->rxaudio = new audioHandler(); radio->rxAudioThread = new QThread(this); - radio->rxAudioThread->setObjectName("server rxAudio()"); + radio->rxAudioThread->setObjectName("rxAudio()"); radio->rxaudio->moveToThread(radio->rxAudioThread);