summaryrefslogtreecommitdiffstats
path: root/src/network/access
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@nokia.com>2011-10-31 14:03:00 (GMT)
committerLiang Qi <liang.qi@nokia.com>2011-10-31 14:03:00 (GMT)
commit8da9881989ca55f7d5e9e74c91e3abc98ce8a1b5 (patch)
treef8ea3bac554266d7f74cf5495dc2de4c6a524c58 /src/network/access
parentcf5695691682957b68b67fd951addf4a52bfba84 (diff)
parentda8a056dbb0e4b0a65d94857cdd65ddcb8633341 (diff)
downloadQt-8da9881989ca55f7d5e9e74c91e3abc98ce8a1b5.zip
Qt-8da9881989ca55f7d5e9e74c91e3abc98ce8a1b5.tar.gz
Qt-8da9881989ca55f7d5e9e74c91e3abc98ce8a1b5.tar.bz2
Merge remote-tracking branch 'origin/4.7' into qt-4.8-from-4.7
Conflicts: doc/src/declarative/declarativeui.qdoc doc/src/mainpage.qdoc doc/src/platforms/supported-platforms.qdoc doc/src/qt-webpages.qdoc src/network/access/qnetworkdiskcache.cpp
Diffstat (limited to 'src/network/access')
-rw-r--r--src/network/access/qnetworkdiskcache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/access/qnetworkdiskcache.cpp b/src/network/access/qnetworkdiskcache.cpp
index 1c515c2..af6ba1d 100644
--- a/src/network/access/qnetworkdiskcache.cpp
+++ b/src/network/access/qnetworkdiskcache.cpp
@@ -429,7 +429,7 @@ QIODevice *QNetworkDiskCache::data(const QUrl &url)
// ### verify that QFile uses the fd size and not the file name
qint64 size = file->size() - file->pos();
const uchar *p = 0;
-#if !defined(Q_OS_WINCE) && !defined(Q_OS_INTEGRITY)
+#if !defined(Q_OS_WINCE) && !defined(Q_OS_INTEGRITY) && !defined(Q_OS_SYMBIAN)
p = file->map(file->pos(), size);
#endif
if (p) {