diff options
author | Keith Isdale <keith.isdale@nokia.com> | 2009-08-31 03:58:40 (GMT) |
---|---|---|
committer | Keith Isdale <keith.isdale@nokia.com> | 2009-08-31 03:58:40 (GMT) |
commit | 3b74c6350ab789c31a938df0807c8c9399bc4fcb (patch) | |
tree | 99c0d7b6b668482ded18c9fd584fd907b766d8ed | |
parent | b0cc2440829ce0deb7e81fd61933c5f4f0e8942c (diff) | |
download | Qt-3b74c6350ab789c31a938df0807c8c9399bc4fcb.zip Qt-3b74c6350ab789c31a938df0807c8c9399bc4fcb.tar.gz Qt-3b74c6350ab789c31a938df0807c8c9399bc4fcb.tar.bz2 |
Correct grammatical in documentation for QNetworkDiskCache::expire()
The text:
When the current size of the cache is greater then the
maximumCacheSize()
should read
When the current size of the cache is greater than the
maximumCacheSize()
Task-number: 260496
Reviewed-by: Zheng Liu (George)
-rw-r--r-- | src/network/access/qnetworkdiskcache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/access/qnetworkdiskcache.cpp b/src/network/access/qnetworkdiskcache.cpp index 167f5d5..21d52c8 100644 --- a/src/network/access/qnetworkdiskcache.cpp +++ b/src/network/access/qnetworkdiskcache.cpp @@ -466,7 +466,7 @@ void QNetworkDiskCache::setMaximumCacheSize(qint64 size) Cleans the cache so that its size is under the maximum cache size. Returns the current size of the cache. - When the current size of the cache is greater then the maximumCacheSize() + When the current size of the cache is greater than the maximumCacheSize() older cache files are removed until the total size is less then 90% of maximumCacheSize() starting with the oldest ones first using the file creation date to determine how old a cache file is. |