knobtest
Phil Taylor 2022-10-05 14:26:42 +01:00
rodzic 4d158f5078
commit b110ce7fbb
2 zmienionych plików z 2 dodań i 9 usunięć

Wyświetl plik

@ -115,7 +115,6 @@ void dxClusterClient::udpDataReceived()
data->timestamp = QDateTime::fromString(spot.firstChildElement("timestamp").text(),"yyyy-MM-dd hh:mm:ss");
data->mode = spot.firstChildElement("mode").text();
data->comment = spot.firstChildElement("comment").text();
//emit addSpot(data);
#ifdef USESQL
database db = database();
@ -282,12 +281,8 @@ void dxClusterClient::updateSpots()
if (spot.value()->frequency > lowFreq && spot.value()->frequency < highFreq)
{
spots.append(**spot);
++spot;
}
else
{
++spot;
}
++spot;
}
#endif

Wyświetl plik

@ -7651,9 +7651,7 @@ void wfmain::receiveSpots(QList<spotData> spots)
if (!found)
{
spotData* sp = new spotData();
sp->dxcall = s.dxcall;
sp->frequency = s.frequency;
spotData* sp = new spotData(s);
//qDebug(logCluster()) << "ADD:" << sp->dxcall;
sp->current = true;