summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt')
-rw-r--r--rbutil/rbutilqt/httpget.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/httpget.cpp b/rbutil/rbutilqt/httpget.cpp
index 0bf5d966eb..acd8940b77 100644
--- a/rbutil/rbutilqt/httpget.cpp
+++ b/rbutil/rbutilqt/httpget.cpp
@@ -32,6 +32,10 @@ HttpGet::HttpGet(QObject *parent)
32 outputToBuffer = true; 32 outputToBuffer = true;
33 cached = false; 33 cached = false;
34 getRequest = -1; 34 getRequest = -1;
35 // if a request is cancelled before a reponse is available return some
36 // hint about this in the http response instead of nonsense.
37 response = -1;
38
35 connect(&http, SIGNAL(done(bool)), this, SLOT(httpDone(bool))); 39 connect(&http, SIGNAL(done(bool)), this, SLOT(httpDone(bool)));
36 connect(&http, SIGNAL(dataReadProgress(int, int)), this, SLOT(httpProgress(int, int))); 40 connect(&http, SIGNAL(dataReadProgress(int, int)), this, SLOT(httpProgress(int, int)));
37 connect(&http, SIGNAL(requestFinished(int, bool)), this, SLOT(httpFinished(int, bool))); 41 connect(&http, SIGNAL(requestFinished(int, bool)), this, SLOT(httpFinished(int, bool)));