Some comments.

This commit is contained in:
Martin Rotter 2020-11-04 11:09:11 +01:00
parent 78ee6b83cf
commit a93ce8a54c
2 changed files with 2 additions and 4 deletions

View File

@ -31,7 +31,7 @@ void SilentNetworkAccessManager::onAuthenticationRequired(QNetworkReply* reply,
else {
reply->setProperty("authentication-given", false);
// Authentication is required but this feed does not contain it.
// Authentication is required but this item does not contain it.
qWarningNN << LOGSEC_NETWORK
<< "Item"
<< QUOTE_W_SPACE(reply->url().toString())

View File

@ -13,14 +13,12 @@ class SilentNetworkAccessManager : public BaseNetworkAccessManager {
Q_OBJECT
public:
// Constructors and destructors.
explicit SilentNetworkAccessManager(QObject* parent = nullptr);
virtual ~SilentNetworkAccessManager();
public slots:
// This cannot do any GUI stuff.
// NOTE: This cannot do any GUI stuff.
void onAuthenticationRequired(QNetworkReply* reply, QAuthenticator* authenticator);
};