summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix headers in the XUnit feature.Thiago Macieira2009-06-049-7/+61
| | | | | | | All Qt headers must have QT_BEGIN_HEADER, QT_END_HEADER and QT_MODULE. These headers didn't have this. Reviewed-by: TrustMe
* Autotest: fix detection of generated files and strip the first lineThiago Macieira2009-06-041-0/+3
| | | | Reviewed-by: TrustMe
* move the QT_NO_ANIMATION macro to the right place (ie after otherThierry Bastian2009-06-047-15/+15
| | | | includes)
* kill usage of QT_STATEMACHINE_SOLUTIONKent Hansen2009-06-045-25/+0
| | | | The define no longer exists.
* qdoc3: define QT_NO_CAST_TO_ASCII for safety, no code changes needed.hjk2009-06-041-1/+1
|
* Add some compile tests for QStringBuilder.hjk2009-06-0410-0/+220
|
* Make inverted appearance work for progressbar in QMacStyleNorwegian Rock Cat2009-06-041-1/+13
| | | | | | | | | HITheme doesn't seem to support the reverse thing. I filled a bug about it, but this is easy to emulate in the horizontal case and the "Inverted" orientation works great for vertical. Task-number: 217594 Reviewed-by: Morten Sørvig
* Forgot to remove old code in d5231e0593dcbf226e0ca3d679c2547e8e1c9697.jasplin2009-06-041-1/+0
| | | | Reviewed-by: TrustMe
* Add an extra explanation for the API extension.Alexis Menard2009-06-041-1/+4
| | | | Reviewed-by:David Boddie
* qdoc: Put <b>...</b> around accessor names.Martin Smith2009-06-042-15/+31
|
* Enable valgrind on Mac OS X as well.Morten Sørvig2009-06-041-1/+1
|
* Removed the internal UsePixmapCache flag in the style code.jasplin2009-06-046-57/+35
| | | | | | | | In the style code, the internal UsePixmapCache flag made no sense in practice, so it was removed. A fortunate side-effect of the patch is that the code is now accepted by Sun CC 5.5. Reviewed-by: jbache
* Make the bench a bit faster.Alexis Menard2009-06-041-2/+2
| | | | Reviewed-by:TrustMe
* Fixed build error with Sun CC 5.5.jasplin2009-06-041-0/+3
| | | | Reviewed-by: tbastian
* Fixed build error with Sun CC 5.5..jasplin2009-06-041-10/+10
| | | | | | | | Note that the fix is simply to swap the order of the two v_construct() overloads. Sun CC 5.5 requires the version with the default argument to occur first. Reviewed-by: TrustMe
* Fixed the frame that would sometimes not be painted around widgets inThierry Bastian2009-06-041-1/+1
| | | | | | | a QStatusBar Task-number: 253717 Reviewed-by: ogoffart
* Fixed build error with Sun CC 5.5.jasplin2009-06-041-1/+8
| | | | Reviewed-by: TrustMe
* compile fix with namespaceshjk2009-06-042-0/+5
|
* Add some comparisons with std::string to the QStringBuilder benchmarks.hjk2009-06-041-18/+68
|
* qdoc: Reset the memItemLeft width property to 200.Martin Smith2009-06-042-2/+2
|
* Code cleanup - use constructor initializers in shader classes.Rhys Weatherley2009-06-041-14/+14
| | | | | Task-number: QT-80 Reviewed-by: Ian Walters
* Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtRhys Weatherley2009-06-041-1/+0
|\
| * Fixes failure when attempting to run all tests.Rohan McGovern2009-06-031-1/+0
| | | | | | | | auto.pro added `qtransition' to SUBDIRS but there is no such directory.
* | Improvements to shader API in response to API reviewRhys Weatherley2009-06-045-99/+88
|/ | | | | Task-number: QT-80 Reviewed-by: Ian Walters
* Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtDavid Boddie2009-06-0324-139/+390
|\
| * Doc fix: moved the cldr version outside of the double-to-string license headerDenis Dzyubenko2009-06-031-2/+2
| |
| * Change crazy casts from QString to NSSting to qt_mac_QStringToNSString.Norwegian Rock Cat2009-06-031-7/+7
| | | | | | | | | | These function exist for making code not look so crazy, so let's actually use that in code where it didn't exist before.
| * Fixed the QMenu to open submenus even if the pointing device is movingThierry Bastian2009-06-031-5/+7
| | | | | | | | | | | | | | but the current highlighted item doesn't change Task-number: 254238 Reviewed-by: ogoffart
| * Removed a warning (qreal should be used, and not float)Thierry Bastian2009-06-031-1/+1
| |
| * fix silly typoKent Hansen2009-06-032-2/+14
| | | | | | | | | | | | | | | | | | | | Yeesh. The function worked for the common case of the argument being a plain script object (obviously, otherwise this would have been discovered sooner), but it would never pick the less expensive path when replacing the QObject pointer of an existing proxy. And if you passed in a QVariant proxy (now who would ever do something like that...?), it would assert.
| * force activation of minimized windows on Windows mobileJoerg Bornemann2009-06-031-1/+5
| | | | | | | | | | | | | | | | | | | | | | When pressing the <- key on a Windows mobile device, the window gets a minimized event (no other soft keys behave like that). Restoring the window via the app menu isn't possible, because the window get a WM_ACTIVATE but its internal state is still minimized. It makes sense to unminimize activated apps on Windows mobile. Task-number: 254673 Reviewed-by: thartman
| * Fix webkit import from the trunk.Simon Hausmann2009-06-031-5/+1
| | | | | | | | | | | | Updated the file list, the SVG filters have been removed. Reviewed-by: Trust me
| * qdoc: Fixed some spacing problems.Martin Smith2009-06-032-13/+20
| |
| * qdoc: Fixed constructor position in summary lists.Martin Smith2009-06-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | The constructors had been displayed in the left column of the table in the summary list, because there was no type. It was caused by a strange test of the match index for 0, which was true for constructors and destructors, anything without a type. I removed that test, since I couldn't figure out what it was for. We might see problems elsewhere in the docs because of this, so beware. I didn't see any, but that test must have been there for some reason.
| * fix signal signature bug in debug outputKent Hansen2009-06-031-2/+2
| | | | | | | | | | The signal code (first character of const char *signal) is stripped internally, so the debug output code should not skip any characters.
| * don't require use of SIGNAL macro in calls to addTransition()Kent Hansen2009-06-032-2/+31
| | | | | | | | | | Just as with the QSignalTransition::signal property, this makes it possible to use the function from language bindings (e.g. QtScript).
| * fix qdoc warningKent Hansen2009-06-031-1/+1
| | | | | | | | No need to link to the class in its own doc page.
| * fix typosKent Hansen2009-06-032-2/+2
| | | | | | | | Copy&paste error; the classes are in Gui, not Core.
| * use of QMutexPool to reduce the number of Q_GLOBAL_STATIC in theThierry Bastian2009-06-032-36/+40
| | | | | | | | animation framework
| * missing opening paragraph tagFrederik Schwarzer2009-06-031-1/+1
| | | | | | | | | | Merge-request: 578 Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
| * Implemented QGLTextureGlyphCache to avoid wasting glyph cache memory.Samuel Rødal2009-06-037-58/+255
| | | | | | | | | | | | | | | | | | Now there's only a copy of the texture glyph cache in graphics memory, avoiding the system memory copy that we used earlier. In addition the texture will use the GL_ALPHA texture format when possible, making it consume less graphics memory as well. Reviewed-by: Tom
* | Doc: Added information about the Fontconfig and FreeType dependencies.David Boddie2009-06-031-0/+10
|/ | | | | Task-number: 250349 Reviewed-by: Trust Me
* Doc: Modified the property documentation to relax the restriction onDavid Boddie2009-06-021-4/+4
| | | | | | | const getter functions. Task-number: 254722 Reviewed-by: Trust Me
* Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtDavid Boddie2009-06-0210-31/+65
|\
| * Revert "Avoid a crash when setting a focus in a widget hierarchy containing"Denis Dzyubenko2009-06-021-3/+2
| | | | | | | | | | | | This reverts commit a5b11b9031f9a2a97b65e9a6134244249845491a. The proper fix is 1a7da7096bbda17197738061902f4489af234bc0.
| * Merge branch '4.5'Denis Dzyubenko2009-06-0211-33/+68
| |\
| | * Avoid a crash when setting a focus in a widget hierarchy containingDenis Dzyubenko2009-06-021-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | both visible and invisible widgets. This is a quick hack to avoid a crash in Qt when setting a focus on a visible widget that has invisible parent. Proper fix was committed into master 1a7da7096bbda17197738061902f4489af234bc0, see it's description for more details. Task-number: 254563 Reviewed-by: Thierry Bastian
| | * BT: Remove duplicate code and fix font parsing.Norwegian Rock Cat2009-06-022-9/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QFont has a feature that you can pass a comma-separated list and it will walk through the list and match the font that it hits first. There's a nice static function that X11 and Windows uses, but the Mac was using an older copied version of it. This old version didn't handle quoting which is what happens in the style sheet. So, using the same code makes everything work well. As a bonus, Creator looks correct again. Reviewed-by: Simon Hausmann
| | * Correct invalid font.Norwegian Rock Cat2009-06-021-1/+1
| | | | | | | | | | | | QFont() returns the app font, not an invalid font.
| | * Fixed aspect ratio on WindowsThierry Bastian2009-06-022-0/+3
| | | | | | | | | | | | | | | | | | - When changing the aspect ratio, the video wouldn't update. - The VMR9 can in some cases try to manage the aspect ratio itself and then fights our system. This is now disabled.