1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

Fix linux warnings

This commit is contained in:
Jon Beniston
2022-02-04 22:26:40 +00:00
parent 09eff20a8e
commit bce51d09d7
6 changed files with 9 additions and 4 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ void MapWebSocketServer::onNewConnection()
void MapWebSocketServer::processTextMessage(QString message)
{
QWebSocket *client = qobject_cast<QWebSocket *>(sender());
//QWebSocket *client = qobject_cast<QWebSocket *>(sender());
//qDebug() << "MapWebSocketServer::processTextMessage - Received text " << message;
QJsonParseError error;
@@ -65,7 +65,7 @@ void MapWebSocketServer::processTextMessage(QString message)
void MapWebSocketServer::processBinaryMessage(QByteArray message)
{
QWebSocket *client = qobject_cast<QWebSocket *>(sender());
//QWebSocket *client = qobject_cast<QWebSocket *>(sender());
// Shouldn't receive any binary messages for now
qDebug() << "MapWebSocketServer::processBinaryMessage - Received binary " << message;
}