summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Brooks <special@dereferenced.net>2010-09-01 02:42:14 (GMT)
committerJohn Brooks <special@dereferenced.net>2010-09-01 02:42:14 (GMT)
commit4c8ea0c920d99dcf0d0decc04597da7b521f2e9c (patch)
tree78792bf686ff32b7de45689b3b3a1a891dace563
parent882992494e0c6f6510e95976abdac5d57966eb6c (diff)
downloadQt-4c8ea0c920d99dcf0d0decc04597da7b521f2e9c.zip
Qt-4c8ea0c920d99dcf0d0decc04597da7b521f2e9c.tar.gz
Qt-4c8ea0c920d99dcf0d0decc04597da7b521f2e9c.tar.bz2
Correct QNetworkReply::downloadProgress and uploadProgress docs
The signal provides qint64, which cannot be connected to QProgressBar::setValue(int).
-rw-r--r--src/network/access/qnetworkreply.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/network/access/qnetworkreply.cpp b/src/network/access/qnetworkreply.cpp
index c8b8c1f..261ed20 100644
--- a/src/network/access/qnetworkreply.cpp
+++ b/src/network/access/qnetworkreply.cpp
@@ -283,9 +283,6 @@ QNetworkReplyPrivate::QNetworkReplyPrivate()
The upload is finished when \a bytesSent is equal to \a
bytesTotal. At that time, \a bytesTotal will not be -1.
- This signal is suitable to connecting to QProgressBar::setValue()
- to update the QProgressBar that provides user feedback.
-
\sa downloadProgress()
*/
@@ -306,9 +303,6 @@ QNetworkReplyPrivate::QNetworkReplyPrivate()
The download is finished when \a bytesReceived is equal to \a
bytesTotal. At that time, \a bytesTotal will not be -1.
- This signal is suitable to connecting to QProgressBar::setValue()
- to update the QProgressBar that provides user feedback.
-
Note that the values of both \a bytesReceived and \a bytesTotal
may be different from size(), the total number of bytes
obtained through read() or readAll(), or the value of the