From a0afaa86f76699a62d3eda66f05c645e09146398 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Thu, 8 Jul 2010 10:22:15 +0000 Subject: [PATCH] do not send an error when resetting outstanding requests; refs #5 --- proxyface/autoproxy.hxx | 3 --- 1 file changed, 3 deletions(-) diff --git a/proxyface/autoproxy.hxx b/proxyface/autoproxy.hxx index b8d474c..0655faf 100644 --- a/proxyface/autoproxy.hxx +++ b/proxyface/autoproxy.hxx @@ -114,9 +114,6 @@ namespace proxy { #ifdef QT_NETWORK_LIB //! Reset, stop all outstanding checks void reset() { - if (_requests.size() || _timeout1.isActive() || _timeout2.isActive()) - // error when we need to abort - proxyError(QNetworkReply::TimeoutError); _timeout1.stop(); _timeout2.stop(); for (Requests::iterator it(_requests.begin());