summaryrefslogtreecommitdiffstats
path: root/demos/browser/networkaccessmanager.cpp
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-02-09 22:40:42 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-02-09 22:40:42 (GMT)
commitbd145e708d97ffb5a68bf53bbdf04b8df8ea4a9b (patch)
tree57fea5e3724c841344924d74d451a26ded978e71 /demos/browser/networkaccessmanager.cpp
parentecf66e5825d186f57468c6bf682dce32c0cd96d7 (diff)
parent6f329da7066de32455ad8ad08a4b617a4a090dd3 (diff)
downloadQt-bd145e708d97ffb5a68bf53bbdf04b8df8ea4a9b.zip
Qt-bd145e708d97ffb5a68bf53bbdf04b8df8ea4a9b.tar.gz
Qt-bd145e708d97ffb5a68bf53bbdf04b8df8ea4a9b.tar.bz2
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-1: Tidy the changes file. Skip the transparent pixels when doing the sourceOver Refactor comp_func_solid_Clear() and comp_func_solid_Source() Add mingw-specific expected failures for JS test suite QNAM HTTP: Forgot to remove a qDebug() QNAM HTTP: Reserve bytes for HTTP parsing Add platform-specific expected failures for JS test suite Skip test that crashes on win32-g++ QNetworkCookie(Jar): fix includes QNAM HTTP: Improve readHeader() of the HTTP reply Add QSKIP to functionEntryAndExit_builtin. QNAM HTTP: Improve parseStatus() of HTTP reply Demo browser: Better handleUnsupportedContent implementation demo browser: Fix the way warnings were (not) displayed doc: Updated deployment OS X requirements for 4.6
Diffstat (limited to 'demos/browser/networkaccessmanager.cpp')
-rw-r--r--demos/browser/networkaccessmanager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/browser/networkaccessmanager.cpp b/demos/browser/networkaccessmanager.cpp
index b0b00a2..70a9305 100644
--- a/demos/browser/networkaccessmanager.cpp
+++ b/demos/browser/networkaccessmanager.cpp
@@ -112,8 +112,9 @@ void NetworkAccessManager::requestFinished(QNetworkReply *reply)
double pctCached = (double(requestFinishedFromCacheCount) * 100.0/ double(requestFinishedCount));
double pctPipelined = (double(requestFinishedPipelinedCount) * 100.0/ double(requestFinishedCount));
double pctSecure = (double(requestFinishedSecureCount) * 100.0/ double(requestFinishedCount));
+#ifdef QT_DEBUG
qDebug("STATS [%lli requests total] [%3.2f%% from cache] [%3.2f%% pipelined] [%3.2f%% SSL/TLS]", requestFinishedCount, pctCached, pctPipelined, pctSecure);
-
+#endif
}
void NetworkAccessManager::loadSettings()