summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-08-154-4/+21
|\| | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Fix QML video app freeze on Symbian Fix QML video crash on Symbian Fix QML video not resuming after background/keylock/task switch Fix build break when verbose multimedia traces are enabled on Symbian
| * Fix QML video app freeze on SymbianJuha Kukkonen2012-08-151-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If EGL context gets destroyed before eglEndpointCancelNotificationNOK call then pending request is not completed. EGL context may get destroyed too early e.g. in background/key lock/task switch/app exit cases. Proper fix would require changes to platform side or adding sync between Qt and Mobility when EGL context is destroyed. Added workaround to Mobility side to complete pending request if eglEndpointCancelNotificationNOK does not complete request. Task-number: ou1cimx1#1010331
| * Fix QML video crash on SymbianJuha Kukkonen2012-08-141-0/+4
| | | | | | | | | | | | | | | | | | In certain cases, e.g. keylock/task switch, it's possible that EGL context is destroyed before imageAvailable signal is emitted. Added EGL context validity check before accessing image. Task-number: ou1cimx1#1010331
| * Fix QML video not resuming after background/keylock/task switchJuha Kukkonen2012-08-141-2/+7
| | | | | | | | | | | | | | | | | | | | Multimedia framework sends video player error event when video playback is paused due to foreground lost event. Changed handling of this event to be similar to application foreground lost event. Task-number: ou1cimx1#1010331
| * Fix build break when verbose multimedia traces are enabled on SymbianJuha Kukkonen2012-08-131-2/+2
| | | | | | | | Reviewed-by: TrustMe
* | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-08-091-1/+1
|\| | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Fix for missing 1920x1088 video resolution for Nokia PureView 808
| * Fix for missing 1920x1088 video resolution for Nokia PureView 808Marko Kenttala2012-08-091-1/+1
|/ | | | | | | | | | | | | QMediaRecorder::supportedResolutions does not report 1920x1088 resolution to be available if codec is defined. Symbian drops every resolution above 1920x1080 for video/H264; profile-level-id=644028 codec. Changed maximum resolution for video/H264; profile-level-id=644028 to be 1920x1088. Task-number: QTMOBILITY-2069 Reviewed-by: Juha Kukkonen
* Merge branch 'master-stable' of ↵Qt Continuous Integration System2012-07-200-0/+0
|\ | | | | | | | | | | scm.dev.nokia.troll.no:qtmobility/qtm-connectivity into master-integration * 'master-stable' of scm.dev.nokia.troll.no:qtmobility/qtm-connectivity:
| * Merge branch 'master' of ↵Qt Continuous Integration System2012-07-2021-93/+334
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git://scm.dev.nokia.troll.no/qtmobility/qtm-connectivity * 'master' of git://scm.dev.nokia.troll.no/qtmobility/qtm-connectivity: Fix QGalleryQueryRequest::setMetaData does not work on Symbian Fix messaging engine (CMTMEngine) cleanup stack usage on Symbian Attachment file name unicode support to Symbian platform Make clear that saving of partial new contacts is possible Symbian error handling improved. bluetooth: fix sending memory object through QBluetoothTransferManager Fixed build failures Improve landmark coordinate validation in landmarkbrowser example Improve landmark coordinate validation in landmarkbrowser example Fix for pixi crash RC-969917 Handling errors for apps with no caps
* | \ Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-multimedia ↵Qt Continuous Integration System2012-06-261-2/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-multimedia: Fix null pointer crash in QtM Multimedia Camera plugin
| * | | Fix null pointer crash in QtM Multimedia Camera pluginAapo Haapanen2012-06-261-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Check the pointer before using it. Task-number: ou1cimx1#1008560 Reviewed-by: Juha Kukkonen
* | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-06-202-3/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Fix error handling in systeminfo on Symbian
| * | | | Fix error handling in systeminfo on SymbianJuha Kukkonen2012-06-202-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Leaving functions were called in non-leaving functions, which could lead to crash e.g. in application exit. Trap handlers were added to relevant places. Task-number: ou1cimx1#1008046 Reviewed-by: Aapo Haapanen
* | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-multimedia ↵Qt Continuous Integration System2012-06-182-20/+19
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-multimedia: Symbian: Fix initial volume setting
| * | | | Symbian: Fix initial volume settingJaakko Helanti2012-06-182-20/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes the problem that when starting to play audio, the initial volume setting does not have any effect, but audio is played with a default volume. Task-number: QTMOBILITY-2061 Reviewed-by: Marko Kenttala <ext-marko.r.kenttala@nokia.com>
* | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-06-182-0/+4
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Document update for messaging
| * | | | Document update for messagingTuija Lindfors2012-06-182-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QMessageManager must be instantiated in the thread it is used. Documentation updated accordingly. Task-number: QTMOBILITY-2036 Reviewed-by: Ari Lehtola <ext-ari.lehtola@nokia.com>
* | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-contacts into ↵Qt Continuous Integration System2012-06-151-0/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-contacts: Document update for contacts engines
| * | | | | Document update for contacts enginesTuija Lindfors2012-06-151-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Contactsengines.qdoc updated regarding required ReadUserData and WriteUserData capabilities in Symbian Task-number: QTMOBILITY-1697 Reviewed-by: Jaakko Helanti <ext-jaakko.helanti@nokia.com>
* | | | | | Merge branch 'master' of ↵Qt Continuous Integration System2012-06-141-2/+46
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | scm.dev.nokia.troll.no:qtmobility/qtm-serviceframework into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-serviceframework: Serviceframework: detect new services added to rom
| * | | | | | Serviceframework: detect new services added to romAapo Haapanen2012-06-141-2/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change serviceframework so that it recognizes when the servicedatabase file is updated on rom. When the file is updated, merge new services to the database on C drive. Task-number: ou1cimx1#1005865 Reviewed-by: Juha Kukkonen
* | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-contacts into ↵Qt Continuous Integration System2012-06-081-8/+0
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-contacts: Fix QContactManager::saveContact() documentation
| * | | | | | Fix QContactManager::saveContact() documentationJuha Kukkonen2012-06-081-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed paragraph about having relationships reordered as that info has been obsolete since 1.0-alpha release. Task-number: QTMOBILITY-1786 Reviewed-by: Tuija Lindfors
* | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-location into ↵Qt Continuous Integration System2012-06-071-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-location: Update routing host address in location
| * | | | | | | Update routing host address in locationJuha Kukkonen2012-06-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated routing host to use new address (route.nlp.nokia.com) Task-number: QTMOBILITY-2045 Reviewed-by: Aapo Haapanen
* | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-06-063-3/+3
|\ \ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Exlude user input events in nested event loops
| * | | | | | | Exlude user input events in nested event loopsJuha Kukkonen2012-06-063-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | System Info and Service Framework use event loops for making asynchronous platform calls to work like synchronous calls. Nested event loops can cause unforeseen issues for applications if user actions are handled while executing inner event loop. Application may e.g. destroy objects too early that can lead to crash. Changed event loops to use ExcludeUserInputEvents flag. Task-number: ou1cimx1#1002406 Reviewed-by: Aapo Haapanen
* | | | | | | | Merge branch 'master' of ↵Qt Continuous Integration System2012-05-221-3/+4
|\ \ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | scm.dev.nokia.troll.no:qtmobility/qtm-serviceframework into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-serviceframework: Fix a crash in S60MediaPlayerControl::setMedia
| * | | | | | | Fix a crash in S60MediaPlayerControl::setMediaAapo Haapanen2012-05-221-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When S60MediaPlayerControl::setMedia is called, a new S60MediaPlayerSession is created and the old one is deleted. This can cause problems if setMedia is called as a result of a signal from the session. Change the deletion of old session to deleteLater() to avoid this problem. Task-number: ou1cimx1#993581 Reviewed-by: Juha Kukkonen
* | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-contacts into ↵Qt Continuous Integration System2012-05-181-1/+1
|\ \ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-contacts: Fix qcontactasync autotest failure on Symbian.
| * | | | | | | Fix qcontactasync autotest failure on Symbian.Juha Kukkonen2012-05-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On Symbian platform, saving contacts takes longer than was expected in contactPartialSaveAsync() test case. Reviewed-by: Roy Mickos
* | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-messaging ↵Qt Continuous Integration System2012-05-141-4/+11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-messaging: Documentation update
| * | | | | | | | Documentation updateMikko Bertin2012-05-141-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Symbian specific limitation for QMessageManager signals described. Task number: MOBILITY-3111 Reviewed by: Juha Kukkonen
* | | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-05-021-1/+1
|\ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Fix error handling in CNetworkOperatorNameListener on Symbian
| * | | | | | | | Fix error handling in CNetworkOperatorNameListener on SymbianJuha Kukkonen2012-05-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Leaving function was called in non-leaving function without trap. Task-number: ou1cimx1#998411 Reviewed-by: TrustMe
* | | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-messaging ↵Qt Continuous Integration System2012-04-281-0/+11
|\ \ \ \ \ \ \ \ \ | | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-messaging: Fix to crash
| * | | | | | | | Fix to crashMikko Bertin2012-04-271-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Symbian backend checks message pointer obtained from message cache and adds object to cache if recreation was needed. Task number: 992317 Reviewed by: Juha Kukkonen
* | | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-04-276-5/+14
|\ \ \ \ \ \ \ \ \ | | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Symbian documentation update for System Information Symbian documentation update for QValueSpacePublisher Symbian documentation update for DocumentGalleryModel
| * | | | | | | | Symbian documentation update for System InformationTuija Lindfors2012-04-274-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Symbian platform, some classes in System Information are not reentrant since Symbian Belle (Qt Mobility 1.2). Documentation in relevant classes was updated accordingly. Reviewed-by: Juha Kukkonen
| * | | | | | | | Symbian documentation update for QValueSpacePublisherTuija Lindfors2012-04-271-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QValueSpacePublisher::setValue does not work with empty name. The documentation in qvaluespacepublisher.cpp was updated accordingly. Task-number: QMOBILITY-1710 Reviewed-by: Juha Kukkonen
| * | | | | | | | Symbian documentation update for DocumentGalleryModelTuija Lindfors2012-04-271-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Symbian platform does not support some rootType properties. The relevant documentation in qdeclarativegalleryquerymodel.cpp was updated. Task-number: QTMOBILITY-1962 Reviewed-by: Juha Kukkonen
* | | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-messaging ↵Qt Continuous Integration System2012-04-262-28/+58
|\ \ \ \ \ \ \ \ \ | | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-messaging: Crash and memory leak fixes
| * | | | | | | | Crash and memory leak fixesMikko Bertin2012-04-262-28/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pointer checks added and array resources freed in Symbian backend. Task number: 992310 Reviewed by: Juha Kukkonen
* | | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-04-1918-12/+717
|\ \ \ \ \ \ \ \ \ | | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: ou1cimx1#968038: Pixi Sharepoint DocApp word crash Added Multi-threading test cases sysinfo in symbian
| * | | | | | | | ou1cimx1#968038: Pixi Sharepoint DocApp word crashLeelaPrasannaKumar Chintagunta2012-04-197-12/+83
| | | | | | | | |
| * | | | | | | | Added Multi-threading test cases sysinfo in symbianLeelaPrasannaKumar Chintagunta2012-04-1911-0/+634
| | | | | | | | |
* | | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-04-191-1/+2
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Fixing test failure of Aligned Timer from examples systeminfo application
| * | | | | | | | Fixing test failure of Aligned Timer from examples systeminfo applicationLeelaPrasannaKumar Chintagunta2012-04-191-1/+2
| | | | | | | | |
* | | | | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo ↵Qt Continuous Integration System2012-04-171-3/+3
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into master-integration * 'master' of scm.dev.nokia.troll.no:qtmobility/qtm-systeminfo: Fix event reminder editing in calendardemo
| * | | | | | | | Fix event reminder editing in calendardemoJuha Kukkonen2012-04-171-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If event had alarm/reminder set then wrong reminder time was shown when editing same event (off by one error).