Fix gcc warnings.

pull/2005/head
srcejon 2024-03-03 13:57:10 +00:00
rodzic 5919f234c0
commit ae64f2c652
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -93,6 +93,8 @@ void KiwiSDRList::handleReply(QNetworkReply* reply)
void KiwiSDRList::handleHTML(const QString& url, const QByteArray& bytes)
{
(void) url;
QList<KiwiSDR> sdrs;
QString html(bytes);
QRegularExpression div("<div class='cl-info'>(.*?)<\\/div>", QRegularExpression::DotMatchesEverythingOption);

Wyświetl plik

@ -93,6 +93,8 @@ void SpyServerList::handleReply(QNetworkReply* reply)
void SpyServerList::handleJSON(const QString& url, const QByteArray& bytes)
{
(void) url;
QList<SpyServer> sdrs;
QJsonDocument document = QJsonDocument::fromJson(bytes);