summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-12-11 18:51:27 +0100
committerUwe Klotz <uklotz@mixxx.org>2020-12-11 18:51:32 +0100
commit112decee53c5369d203639d0b562d11f8cbb7cd5 (patch)
treedc2d208b627b48d650e78997212d3446f4b01817 /src
parenta386b1d296a166288551177f1b4785f5192b1573 (diff)
Reword comments
Diffstat (limited to 'src')
-rw-r--r--src/musicbrainz/web/musicbrainzrecordingstask.cpp5
-rw-r--r--src/network/jsonwebtask.cpp5
2 files changed, 4 insertions, 6 deletions
diff --git a/src/musicbrainz/web/musicbrainzrecordingstask.cpp b/src/musicbrainz/web/musicbrainzrecordingstask.cpp
index 0cad9148db..4db4d310ff 100644
--- a/src/musicbrainz/web/musicbrainzrecordingstask.cpp
+++ b/src/musicbrainz/web/musicbrainzrecordingstask.cpp
@@ -118,9 +118,8 @@ bool MusicBrainzRecordingsTask::doStart(
return false;
}
- // It is not necessary to connect the QNetworkReply::errorOccurred
- // signal (since Qt 5.15). Network errors are also received trough
- // the QNetworkReply::finished signal.
+ // It is not necessary to connect the QNetworkReply::errorOccurred signal.
+ // Network errors are also received trough the QNetworkReply::finished signal.
connect(m_pendingNetworkReply,
&QNetworkReply::finished,
this,
diff --git a/src/network/jsonwebtask.cpp b/src/network/jsonwebtask.cpp
index 6672f68dc4..e2cae983a2 100644
--- a/src/network/jsonwebtask.cpp
+++ b/src/network/jsonwebtask.cpp
@@ -277,9 +277,8 @@ bool JsonWebTask::doStart(
return false;
}
- // It is not necessary to connect the QNetworkReply::errorOccurred
- // signal (since Qt 5.15). Network errors are also received trough
- // the QNetworkReply::finished signal.
+ // It is not necessary to connect the QNetworkReply::errorOccurred signal.
+ // Network errors are also received trough the QNetworkReply::finished signal.
connect(m_pendingNetworkReply,
&QNetworkReply::finished,
this,