summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
| * Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-09-291370-22528/+1032765
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | Use Q_ENUMS for State and Direction enums.Bea Lam2009-09-291-0/+2
| | |
| * | Fix crash bug when inspecting QmlBoundSignalParameters objects inBea Lam2009-09-291-0/+3
| | | | | | | | | | | | debugger.
* | | Another focusscope testAaron Kennedy2009-09-291-0/+75
| |/ |/|
* | 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
| | * Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-09-292-2/+9
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Remove redundant "Fetch object" button and text field.Bea Lam2009-09-292-16/+0
| | | |
| | * | Use splitter to separate tree and property views. Helps with problemsBea Lam2009-09-291-7/+6
| | | | | | | | | | | | | | | | | | | | with viewing complex trees since the tree's horizontal scrollbar is not appearing either.
| | * | Fix to not crash when viewing the value of a property that is aBea Lam2009-09-291-2/+2
| | | | | | | | | | | | | | | | QObject* (in this case, a QmlXmlListModel_QML_1*).
| * | | 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
| * | | | Triggering softkey action for disbled widget causes a crash.Sami Merilä2009-09-283-2/+24
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Softkey actions need to copy enable state from action widget to prevent crash when action is triggered and action widget is disabled. OPEN: dynamically setting enable state for softkey actions. Task-number: QT-2117 Reviewed-by: Jason Barron
| * | | Merge branch '4.6' of git@scm.dev-nokia.troll.no:qt/qt into 4.6Andreas Aardal Hanssen2009-09-283-2/+4
| |\ \ \
| | * | | Fix qdoc error.Jason McDonald2009-09-281-1/+1
| | | | | | | | | | | | | | | | | | | | Reviewed-by: Trust Me
| | * | | Fix qdoc errorJason McDonald2009-09-281-1/+1
| | | | | | | | | | | | | | | | | | | | Reviewed-by: Trust Me
| | * | | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6Jason McDonald2009-09-282-4/+4
| | |\ \ \
| | * | | | Fix qdoc errorsJason McDonald2009-09-281-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Reviewed-by: Trust Me
| * | | | | Merge commit 'origin/4.5' into 4.6Andreas Aardal Hanssen2009-09-2811-228/+165
| |\ \ \ \ \ | | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reviewed-by: Joao Conflicts: src/gui/graphicsview/qgraphicsview.cpp src/gui/widgets/qspinbox.cpp tests/auto/qgraphicsview/tst_qgraphicsview.cpp
| | * | | | QGraphicsItem with parent flag ItemClipsChildrenToShape not visibleAndreas Aardal Hanssen2009-09-282-1/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regression against Qt 4.4. Children of items with ItemClipsChildrenToShape would only be discovered if the view's expose region contained the outer bounding rect of all items, _if_ there was at least one item in the scene that enabled ItemIgnoresTransformations. The reason for this bug is that the presence of an untransformable item causes the item lookups to go through a different path (QGraphicsViewPrivate::itemsInArea()). This function had the bug that it didn't correctly discover children of clip-items. Because of this, in the provided test case you could "work around" the bug by either removing the clip flag, or the transformation flag. Task-number: QTBUG-4151 Reviewed-by: Alexis
| | * | | | Some of my 4.5.3 changesMarkus Goetz2009-09-281-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | Reviewed-by: TrustMe
| | * | | | my changes for 4.5.3 addedJoerg Bornemann2009-09-281-1/+1
| | | | | |
| | * | | | Cocoa: Fix build cocoa port with namespaceRichard Moe Gustavsen2009-09-283-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fix just fixes up coding bugs here and there Reviewed-by: Brad
| | * | | | Updated change log for 4.5.3João Abecasis2009-09-281-0/+14
| | | | | |