summaryrefslogtreecommitdiffstats
path: root/src/network
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2010-02-15 04:18:42 (GMT)
committerAaron McCarthy <aaron.mccarthy@nokia.com>2010-02-15 04:18:42 (GMT)
commit1afc8234c3a0ab38671f6078cf6a865ba81c73f7 (patch)
tree76639b6e467a0815cbc8f285a91295d6eaef4370 /src/network
parent21aeae2a2258ab8e5083a0607c3b98579bf6fc58 (diff)
downloadQt-1afc8234c3a0ab38671f6078cf6a865ba81c73f7.zip
Qt-1afc8234c3a0ab38671f6078cf6a865ba81c73f7.tar.gz
Qt-1afc8234c3a0ab38671f6078cf6a865ba81c73f7.tar.bz2
Reorder members to remove hole.
Diffstat (limited to 'src/network')
-rw-r--r--src/network/access/qnetworkaccessmanager_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/network/access/qnetworkaccessmanager_p.h b/src/network/access/qnetworkaccessmanager_p.h
index 568894c..8a1f19d 100644
--- a/src/network/access/qnetworkaccessmanager_p.h
+++ b/src/network/access/qnetworkaccessmanager_p.h
@@ -75,9 +75,9 @@ public:
#ifndef QT_NO_NETWORKPROXY
proxyFactory(0),
#endif
- cookieJarCreated(false),
networkSession(0),
- networkAccessEnabled(true)
+ networkAccessEnabled(true),
+ cookieJarCreated(false)
{ }
~QNetworkAccessManagerPrivate();
@@ -119,11 +119,11 @@ public:
QNetworkProxyFactory *proxyFactory;
#endif
- bool cookieJarCreated;
-
QNetworkSession *networkSession;
bool networkAccessEnabled;
+ bool cookieJarCreated;
+
// this cache can be used by individual backends to cache e.g. their TCP connections to a server
// and use the connections for multiple requests.
QNetworkAccessCache objectCache;