summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.p.agocs@nokia.com>2011-03-22 10:15:03 (GMT)
committerLaszlo Agocs <laszlo.p.agocs@nokia.com>2011-03-22 10:15:03 (GMT)
commit933b7f7fe5344adeee7f6e9565897b606555d23f (patch)
treeb8429b933af8d1086ea1b1c5f4ced9e52aa7d415 /demos
parentdfa9643193134612f3e5d25c5fa4f2a9d1fd6837 (diff)
downloadQt-933b7f7fe5344adeee7f6e9565897b606555d23f.zip
Qt-933b7f7fe5344adeee7f6e9565897b606555d23f.tar.gz
Qt-933b7f7fe5344adeee7f6e9565897b606555d23f.tar.bz2
Changed maximum heap size for qmlflickr on Symbian.
32 MB is certainly not enough to load large (e.g. 12 Mpix or bigger) images. Now it is changed to 128 MB. Reviewed-by: Jani Hautakangas
Diffstat (limited to 'demos')
-rw-r--r--demos/embedded/qmlflickr/qmlflickr.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/embedded/qmlflickr/qmlflickr.pro b/demos/embedded/qmlflickr/qmlflickr.pro
index 39b316a..8d4e032 100644
--- a/demos/embedded/qmlflickr/qmlflickr.pro
+++ b/demos/embedded/qmlflickr/qmlflickr.pro
@@ -8,5 +8,6 @@ symbian {
TARGET.UID3 = 0x$$qmlflickr_uid3 # defined in deployment.pri
include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
TARGET.CAPABILITY = NetworkServices
- TARGET.EPOCHEAPSIZE = 0x20000 0x2000000
+ # Maximum heap size set to 128 MB in order to allow loading large images.
+ TARGET.EPOCHEAPSIZE = 0x20000 0x8000000
}