diff options
author | Laszlo Agocs <laszlo.p.agocs@nokia.com> | 2011-03-22 10:15:03 (GMT) |
---|---|---|
committer | Laszlo Agocs <laszlo.p.agocs@nokia.com> | 2011-03-22 10:15:03 (GMT) |
commit | 933b7f7fe5344adeee7f6e9565897b606555d23f (patch) | |
tree | b8429b933af8d1086ea1b1c5f4ced9e52aa7d415 | |
parent | dfa9643193134612f3e5d25c5fa4f2a9d1fd6837 (diff) | |
download | Qt-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
-rw-r--r-- | demos/embedded/qmlflickr/qmlflickr.pro | 3 |
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 } |