summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-10-0116-1060/+1120
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Yann Bodson2009-10-011-1/+2
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2009-10-018-1029/+1094
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Enhance layout exampleAlan Alpert2009-10-011-1/+2
| | | | | | | | | | | | | | | | It's actually useful now. A lot slower too.
| * | | * use alias in CalcButton.qmlYann Bodson2009-10-012-6/+5
| | |/ | |/| | | | | | | * do not set a z value (broken with positioners atm)
| * | Added utility method to parse single/stand-alone bindings.Erik Verbruggen2009-09-307-1028/+1093
| | |
| * | Set sceneRect to size of root item instead of size of view.Christian Kamm2009-09-301-1/+1
| |/ | | | | | | | | | | | | | | This changes nothing when contentResizable is set and allows scroll bars to be used when it's false and the view size is smaller than the root item's size. Reviewed-by: owolff
| * Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2009-09-308-14/+52
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Merge branch 'kinetic-declarativeui' of ↵Yann Bodson2009-09-305-5/+35
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Fix small bugs in flick-mobileYann Bodson2009-09-303-9/+17
| | | |
| * | | Fix repeater item orderingAlan Alpert2009-09-302-15/+2
| |/ / | | | | | | | | | | | | Note that while QT-2241 exists there will still be an issue with the specific usecase of placing a repeater inside a positioner
* | | Auto-resize window when a new file is opened from the Open dialog. AlsoBea Lam2009-10-011-1/+2
| |/ |/| | | | | | | set the Open dialog's initial directory to directory of the current file.
* | Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-09-307-11/+199
|\ \ | |/ | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-09-293-1/+81
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * TextEdit navigation testcaseAaron Kennedy2009-09-293-1/+81
| | |
| * | Make sure the delayed press event is exactly the same as the original.Martin Jones2009-09-291-2/+9
| |/
| * Some fixes for ListView key handling.Martin Jones2009-09-292-8/+34
| | | | | | | | | | Accept auto repeated keys in wrap mode even at the ends. Allow Keys.onLeftPressed, etc. to override default key handling.
| * Update testAaron Kennedy2009-09-291-2/+2
| |
| * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-09-292-0/+5
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | Another focusscope testAaron Kennedy2009-09-291-0/+75
| | |
* | | If there's only one engine, auto-connect to it and hide engines view.Bea Lam2009-09-305-5/+35
| |/ |/| | | | | Also auto-load available engines on connect.
* | Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-09-291370-22528/+1032765
|\ \ | |/ | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-09-294-25/+18
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-09-293-25/+8
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Don't call virtual setPosHelper during destructionAaron Kennedy2009-09-291-0/+10
| | | |
| * | | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into ↵Michael Brasser2009-09-291370-22528/+1032755
| |\ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | kinetic-declarativeui Conflicts: configure.exe mkspecs/features/qt.prf
| | * | Fixes failing autotest.Bill King2009-09-291-0/+4
| | | |
| | * | Fix a alpha issue with RGB32 and DirectFBAnders Bakken2009-09-291-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since we can't use RGB32 format with DirectFB (issues regarding Qt's assumptions about the alpha byte) we need to explicitly convert images of this type to the preferred alphaPixmap format. This fixes an issue where RGB32 images get a curious gray alpha overlay. Reviewed-by: Noam Rosenthal <noam.rosenthal@nokia.com>
| | * | Fixes compileBill King2009-09-291-7/+7
| | | |
| | * | doc: add some more \since 4.6 tagsVolker Hilsheimer2009-09-2810-9/+58
| | | |
| | * | QWheelEvent not working on Cocoa 64BitPrasanth Ullattil2009-09-281-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The patch which added support for smooth scrolling will work only on 32 bit builds. The new methods (e.g. deviceDeltaX) of the NSEvent were added with the float return type. This should be of CGFloat type instead, which is different from float on 64 bit builds. Reviewed-by: Trust Me
| | * | Fix Freemantle build of JSC/WebKit.Simon Hausmann2009-09-282-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove __clear_cache which is an internal function of GCC https://bugs.webkit.org/show_bug.cgi?id=28886 Patch by Gabor Loki <loki@inf.u-szeged.hu> on 2009-09-28 Reviewed by Simon Hausmann. Although __clear_cache is exported from GCC, this is an internal function. GCC makes no promises about it. * jit/ExecutableAllocator.h: (JSC::ExecutableAllocator::cacheFlush): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@48824 268f45cc-cd09-0410-ab3c-d52691b4dbfc
| | * | Fix to Q3PopupMenu autotest on windowsThierry Bastian2009-09-281-2/+2
| | | | | | | | | | | | | | | | 100ms is not enough because there is a delay for the popup.
| | * | QScript: Add test for getting backtrace of recursive functionsOlivier Goffart2009-09-281-0/+66
| | | |
| | * | QScript: Fix strange bugs and crashes.Olivier Goffart2009-09-284-9/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I was assuming that the default return value register was always set to 0 for native calls. But this is not the case. So we must ensure this. Also be consistend in the way the stackframe grow and shrink. This expose another bug in the way the call frame is created in JSC Reviewed-by: Kent Hansen
| | * | fixed a typo in the doc.Denis Dzyubenko2009-09-281-1/+1
| | | | | | | | | | | | | | | | Reviewed-by: trustme
| | * | Fix QWebHistory autotest crashesJedrzej Nowacki2009-09-281-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | https://bugs.webkit.org/show_bug.cgi?id=29803 Reviewed-by: Simon Hausmann Cherry-picked-by: Simon Hausmann
| | * | Fixed a crash in the boxes demo when using -graphicssystem opengl.Trond Kjernaasen2009-09-284-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Several problems: 1. The demo leaked the scene contents, which caused cleanup problems. 2. The QGLContext::currentContext() could be changed behind Qt's back under Windows (the temp contexts never reset the current context). 3. QGLFormat::openGLVersionFlags() function would return uninitialized flags if the QGLWidget constructor happened to call qt_gl_preferGL2Engine(). Reviewed-by: Kim
| | * | Removed unused line in QAbstractAnimationLeonardo Sobral Cunha2009-09-281-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | This line was a left-over from commit 86f5a63b018441 Reviewed-by: thierry
| | * | getMacPreferredLanguageAndCountry: Fix possible crashMarkus Goetz2009-09-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | getMacPreferredLanguageAndCountry can crash when called e.g. as a root user because CFPreferencesCopyValue will return 0. Reviewed-by: denis Task-number: 261664
| | * | Fixing the autotest for other platforms, hopefully...João Abecasis2009-09-281-1/+1
| | | | | | | | | | | | | | | | Reviewed-by: Joerg Bornemann
| | * | Refactor of timer verification in QAbstractAnimationLeonardo Sobral Cunha2009-09-281-6/+4
| | | | | | | | | | | | | | | | Reviewed-by: thierry
| | * | Correct the formextractor which was using removed QWebElement APIJocelyn Turcotte2009-09-281-7/+7
| | | | | | | | | | | | | | | | Reviewed-by: Kent Hansen
| | * | Fixed compile failure when running make with large -j.Rohan McGovern2009-09-281-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `ld: library not found for -lQtOpenGL' ... in opengl graphicssystem. Must build QtOpenGL before the GL graphicssystem plugin. Reviewed-by: brad
| | * | Animations: updateCurrentTime now receives the currentTime as paramaterThierry Bastian2009-09-2815-30/+30
| | | | | | | | | | | | | | | | Reviewed-by: Leo
| | * | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6Sami Merilä2009-09-283-13/+28
| | |\ \
| | | * | Fix tst_QTextDocument::cursorPositionChangedOnSetTextmae2009-09-281-7/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test was introduced to make sure that the cursor position changed signal was not emitted excessively on setPlainText or on setHtml. The original fix however still included one superfluous emission for a temporary QTextCursor object. This was fixed by change 930ba91ec1e630, this change adjusts the auto test accordingly. Reviewed-by: Simon Hausmann
| | | * | Impossible to interact with the year on QCalendarWidget on GraphicsViewThierry Bastian2009-09-281-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem is that it is using mapToGlobal to translate a mouse position andthat doesn't work well when the widget is mebedded inside graphics view. Task-number: QT-2218 Reviewed-by: Bjoern Erik Nilsen
| | | * | Merge branch '4.6' of git@scm.dev.troll.no:qt/qt into 4.6Janne Anttila2009-09-2818-240/+250
| | | |\ \
| | | * | | Fixed QMessageBox::updateSize test case for S60.Janne Anttila2009-09-281-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In S60 message boxes are always in portrait mode located on the bottom of screen and they occypy the whole sreen width. In addition messageboxes in S60 does not have their own buttons, but the buttons are located in system softkey area. That's why adding standard buttons for message box in S60 does not change the dialog size. Reviewed-by: Sami Merila