diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-04-26 16:06:10 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-04-26 16:06:10 (GMT) |
commit | 936e747cf4556ae86591455b441fcf30baddc2b4 (patch) | |
tree | cabae1a069ba6f8d8dbb09628fd225d670a03395 /src/declarative/util | |
parent | cce89db1e2555cbca8fc28072e1c6dd737cec6c4 (diff) | |
parent | d0787ad401a8e214b10ee3a78f150ed94d94182c (diff) | |
download | Qt-936e747cf4556ae86591455b441fcf30baddc2b4.zip Qt-936e747cf4556ae86591455b441fcf30baddc2b4.tar.gz Qt-936e747cf4556ae86591455b441fcf30baddc2b4.tar.bz2 |
Merge branch 4.7 into qt-4.8-from-4.7
Diffstat (limited to 'src/declarative/util')
-rw-r--r-- | src/declarative/util/qdeclarativepixmapcache.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/declarative/util/qdeclarativepixmapcache.cpp b/src/declarative/util/qdeclarativepixmapcache.cpp index 9221d78..a29854f 100644 --- a/src/declarative/util/qdeclarativepixmapcache.cpp +++ b/src/declarative/util/qdeclarativepixmapcache.cpp @@ -72,9 +72,7 @@ QT_BEGIN_NAMESPACE // The cache limit describes the maximum "junk" in the cache. // These are the same defaults as QPixmapCache -#if defined(Q_OS_SYMBIAN) -static int cache_limit = 1024 * 1024; // 1048 KB cache limit for symbian -#elif defined(Q_WS_QWS) || defined(Q_WS_WINCE) +#if defined(Q_WS_QWS) || defined(Q_WS_WINCE) static int cache_limit = 2048 * 1024; // 2048 KB cache limit for embedded #else static int cache_limit = 10240 * 1024; // 10 MB cache limit for desktop |