summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed the mouse handler of FEP when in inline edit mode.axis2009-06-102-55/+18
| | | | | | We now commit the text if the mouse handler is invoked. This prevents the case where the VK cannot be brought up because the widget is the only focusable widget and is stuck in inline edit mode.
* Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-06-107-41/+42
|\
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-publicSami Merilä2009-06-106-41/+37
| |\
| | * Switched QDesktopServices mail-to URL handling to RSendAs in Symbian.Janne Anttila2009-06-103-37/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | Earlier used CSendUi required extensiva capabilities to work correctly, that's why "new email" option in desktop services example application did not work correctly with self signed capabilities. RSendAs requires lower capabilities since SendAs server (separate process) takes care of necessary actions to send the message.
| | * Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-06-1012-0/+49
| | |\
| | * | Implemented content filters for desktopservices example.Janne Anttila2009-06-103-4/+13
| | | | | | | | | | | | | | | | | | | | Now only the relevant files are shown under images and music tabs, even the folder would contain other content types.
| * | | S60Style: Fix scrollbar error, when scrollbar PM minimum length is less than ↵Sami Merilä2009-06-101-0/+5
| | |/ | |/| | | | | | | its width on horizontal scrollbar (and height on vertical scrollbar).
* | | Also patch vendor id in patch_capabilities.pl script.Miikka Heikkinen2009-06-101-1/+1
|/ /
* | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-06-1011-57/+90
|\ \
| * | Force qRound64() to take a double on platforms where qreal is a float.makuukka2009-06-102-0/+31
| |/ | | | | | | | | | | | | | | | | | | | | | | In Symbian qreal is defined as float. And in qround64 the parameter was qreal. This qround64 is used (only) in qvariant::convert, when converting from double to e.g. int. This caused overflow bug for some (close to max int) values, because in convert chain double value was casted to float. Task-number: 250267 Reviewed-By: Samuel Rødal Reviewed-By: Jason Barron
| * Enabled default iap setting for FTP example.Janne Anttila2009-06-102-15/+12
| | | | | | | | | | This should remove multiple IAP queries when using FTP example. The used IAP is now asked from user when application is started.
| * Itemviews have go their focus frame back.Alessandro Portale2009-06-091-4/+4
| | | | | | | | Got lost with dc177883bf98a68e61c9a9cda7e1ba9464079275
| * Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-06-094-35/+41
| |\
| | * More usable output of the s60theme utilityAlessandro Portale2009-06-082-3/+7
| | |
| | * Attempt to load default skin only if it is present.Alessandro Portale2009-06-081-1/+3
| | |
| | * Removal of inneccessary QS60StylePrivate scopesAlessandro Portale2009-06-081-31/+31
| | |
| * | Fixed STL dependency for Symbian.Janne Anttila2009-06-091-1/+1
| |/ | | | | | | The STL config is stored in CONFIG qmake variable, not in QT_CONFIG.
| * Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-06-085-92/+111
| |\
| | * pointSize = 7 seems to be a good desfault for S60Alessandro Portale2009-06-081-1/+0
| | | | | | | | | | | | | | | There were no objections from the field with ing one Year of Tech Previews.
| * | Fix to qplaintextedit::getSetCheck auto test in Symbian.Janne Anttila2009-06-081-1/+1
| | | | | | | | | | | | We cannot use INT_MAX since qreal is typedef to float in Symbian OS.
* | | Added proper UID3 for some demos and examples.Miikka Heikkinen2009-06-1010-0/+18
| |/ |/|
* | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-06-082-4/+14
|\ \ | |/
| * Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicJanne Anttila2009-06-0854-179/+608
| |\
| * | Avoid unnecessary calls to FocusChanged in Symbian.Janne Anttila2009-06-081-3/+6
| | | | | | | | | | | | | | | | | | | | | Called setFocus only when the widget does not already have the focus. This should remove unncessary calls to FocusChanged since CCoeControl always calls FocusChanged when SetFocus is called, even there was no changes in focus.
| * | Fixed tst_QTemporaryFile::renameFdLeak test case for Symbian.Janne Anttila2009-06-081-1/+8
| | | | | | | | | | | | Test data for Symbian was not deployed correctly.
* | | S60 install docs updates.Miikka Heikkinen2009-06-083-72/+67
| | |
* | | Changed created sisx package extension to sis and also cleanedMiikka Heikkinen2009-06-081-19/+44
| |/ |/| | | | | up the createpackage script a bit in general.
* | Merge branch 'master' of git@scm.dev.troll.no:qt/qt-s60-publicMiikka Heikkinen2009-06-0852-178/+538
|\ \
| * \ Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qtaxis2009-06-0851-174/+534
| |\ \ | | | | | | | | | | | | | | | | Conflicts: tests/auto/qlocalsocket/tst_qlocalsocket.cpp
| | * | Set the error to be HostUnreacheable if WSAEHOSTUNREACH is recievedAndy Shaw2009-06-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This was a contribution sent via the public bugs channel. Task-number: 255161 Reviewed-by: Marius Storm-Olsen
| | * | Ensure that the manifest files are placed correctlyAndy Shaw2009-06-082-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If OBJECTS_DIR was empty then it would create a directory for the manifest files in the root directory. This is not desired as it should create a directory in the build directory instead. Reviewed-by: Marius Storm-Olsen
| | * | Add a comment for the translator so the placeholders are describedAndy Shaw2009-06-061-0/+3
| | | | | | | | | | | | | | | | Reviewed-by: TrustMe
| | * | Fixed typos.Trond Kjernåsen2009-06-051-2/+2
| | | |
| | * | My 4.5.2 changes.Trond Kjernåsen2009-06-051-1/+43
| | | |
| | * | explicitly handle windows and mac9 line endingsOswald Buddenhagen2009-06-051-5/+20
| | | | | | | | | | | | | | | | | | | | | | | | in practice, this matters only for backslashed line continuations Task-number: 255336
| | * | Fixed an issue with graphicssystem raster on 8 and 16 bit X servers.Trond Kjernåsen2009-06-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We didn't actually check the depth of the target window before calling the qt_x11_drawImage() fu, that will only work with depths >= 24. Task-number: 255311 Reviewed-by: Samuel BT: yes
| | * | Doc - fixed a typoKavindra Devi Palaraja2009-06-051-2/+1
| | | | | | | | | | | | | | | | Reviewed-By: TrustMe
| | * | Doc - fixed another typoKavindra Devi Palaraja2009-06-051-1/+1
| | | | | | | | | | | | | | | | Reviewed-By: TrustMe
| | * | Doc - fixed a typoKavindra Devi Palaraja2009-06-051-1/+1
| | | | | | | | | | | | | | | | Reviewed-By: TrustMe
| | * | My changes for 4.5.2.jasplin2009-06-051-0/+18
| | | |
| | * | My changes for 4.5.2Thomas Hartmann2009-06-051-1/+3
| | | |
| | * | Revert "BT: Fixed crash on Mac caused by erroneous handling of native focus ↵jasplin2009-06-051-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | events." This reverts commit 7314c07a3e443b1d5349b419a03db8d41ca43f7e. As reported by Eike, this patch caused several problems for Qt Creator. Potentially it may cause problems for other (external) applications as well. An alternative fix (scheduled for 4.5.x) needs to be found for tasks 254456 and 254460. Reviewed-by: Richard Moe Gustavsen
| | * | Example MDI: keybord focus not working correctly!Richard Moe Gustavsen2009-06-051-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The reason is that cocoa looses the first responder when we raise the fake window inside the MDA area. So we need to re-set the first responder again Task-number: 255040 Reviewed-by: Trenton Schulz
| | * | Fixed text drawing on Windows in 16 bit mode.Trond Kjernaasen2009-06-052-13/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were several problems with antialiased text in 16 bit mode under Windows. No gamma correction was done, yet we prepared the cached glyphs for gamma correction. The mask format we rendered the glyphs into was also set to the desktop depth, which implied that information was lost and the text looked rather odd. Reviewed-by: Samuel BT: yes
| | * | Doc - fixed a typoKavindra Devi Palaraja2009-06-051-1/+1
| | | | | | | | | | | | | | | | Reviewed-By: TrustMe
| | * | Autotest: Fixed a race condition in the network self test.Thiago Macieira2009-06-051-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of the tests (including the httpsServer one) requested that the server close the connection (Connection: close). It could happen that, well, the server did close the connection and we noticed it while doing the waitForBytesWritten in the doSocketFlush function. Then we'd create an error in the next step because the socket wasn't connected. Reviewed-by: TrustMe
| | * | Doc - cleaned up a sentence to improve clarityKavindra Devi Palaraja2009-06-051-1/+1
| | | | | | | | | | | | | | | | Reviewed-By: TrustMe
| | * | link qmake without /DEBUG on WindowsJoerg Bornemann2009-06-051-1/+1
| | | | | | | | | | | | | | | | Reviewed-by: mariusSO
| | * | My changelog for 4.5.2Alexis Menard2009-06-051-0/+11
| | | |
| | * | Make sure to retain alpha information in copyAnders Bakken2009-06-041-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | We need to set alpha to the right value when copying pixmaps. Reviewed-by: Donald <qt-info@nokia.com>