mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-25 01:18:38 -05:00
Fix gcc warnings.
This commit is contained in:
parent
5919f234c0
commit
ae64f2c652
@ -93,6 +93,8 @@ void KiwiSDRList::handleReply(QNetworkReply* reply)
|
|||||||
|
|
||||||
void KiwiSDRList::handleHTML(const QString& url, const QByteArray& bytes)
|
void KiwiSDRList::handleHTML(const QString& url, const QByteArray& bytes)
|
||||||
{
|
{
|
||||||
|
(void) url;
|
||||||
|
|
||||||
QList<KiwiSDR> sdrs;
|
QList<KiwiSDR> sdrs;
|
||||||
QString html(bytes);
|
QString html(bytes);
|
||||||
QRegularExpression div("<div class='cl-info'>(.*?)<\\/div>", QRegularExpression::DotMatchesEverythingOption);
|
QRegularExpression div("<div class='cl-info'>(.*?)<\\/div>", QRegularExpression::DotMatchesEverythingOption);
|
||||||
|
@ -93,6 +93,8 @@ void SpyServerList::handleReply(QNetworkReply* reply)
|
|||||||
|
|
||||||
void SpyServerList::handleJSON(const QString& url, const QByteArray& bytes)
|
void SpyServerList::handleJSON(const QString& url, const QByteArray& bytes)
|
||||||
{
|
{
|
||||||
|
(void) url;
|
||||||
|
|
||||||
QList<SpyServer> sdrs;
|
QList<SpyServer> sdrs;
|
||||||
QJsonDocument document = QJsonDocument::fromJson(bytes);
|
QJsonDocument document = QJsonDocument::fromJson(bytes);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user