Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix compilation with xlC 7: the compiler tries to expand ↵ | Thiago Macieira | 2009-07-21 | 2 | -14/+14 |
| | | | | | | | | | qIsForwardIteratorEnd with QString This is used in other places too, so move the definition to the header. Reviewed-By: Trust Me | ||||
* | Fix compilation with xlC 7: the compiler doesn't find statics in template ↵ | Thiago Macieira | 2009-07-21 | 1 | -1/+2 |
| | | | | | | | | | | expansions. parser/qmaintainingreader.cpp", line 175.40: 1540-0274 (S) The name lookup for "formatKeyword" did not find a declaration. parser/qmaintainingreader.cpp", line 175.40: 1540-1292 (I) Static declarations are not considered for a function call if the function is not qualified. Reviewed-By: Peter Hartmann Reviewed-By: Frans Englich | ||||
* | Fix compilation of QHash<QUrl, ...> with xlC 7. | Thiago Macieira | 2009-07-21 | 1 | -11/+13 |
| | | | | | | | Make sure that the function is found properly. It can't be static, for whatever reason. Reviewed-By: Peter Hartmann | ||||
* | xlC 7 cannot compile QtConcurrent with these templates here | Thiago Macieira | 2009-07-21 | 1 | -1/+1 |
| | |||||
* | Add code to the Unix configure script to get the xlC version number | Thiago Macieira | 2009-07-21 | 1 | -2/+28 |
| | |||||
* | Fix compilation with xlC 7: the cast is necessary to get delete[] to ↵ | Thiago Macieira | 2009-07-21 | 1 | -1/+1 |
| | | | | | | understand what to delete Reviewed-By: Trust Me | ||||
* | Doc: Updated link and a bit more documentation for | Volker Hilsheimer | 2009-07-21 | 2 | -10/+26 |
| | | | | QWebSecurityOrigin and QWebDatabase. | ||||
* | Fix warning with Sun CC 5.9 and xlC 7: no new types inside anonymous unions. | Thiago Macieira | 2009-07-21 | 1 | -5/+6 |
| | | | | | | | | These compilers compile this code fine, but this warning shows up *everywhere* when building Qt (or used to, since qstringlist.h included qstringmatcher.h). Move the structure definition to outside the union. | ||||
* | There's no need to include qstringmatcher.h in qstringlist.h | Thiago Macieira | 2009-07-21 | 2 | -1/+1 |
| | |||||
* | Disable visibility on CC 5.9 since the compiler doesn't like it | Thiago Macieira | 2009-07-21 | 1 | -1/+2 |
| | |||||
* | New Binary | Friedemann Kleint | 2009-07-21 | 1 | -0/+0 |
| | |||||
* | configure -dont-process must build the host tools on Windows CE | Joerg Bornemann | 2009-07-21 | 3 | -2/+2 |
| | | | | Reviewed-by: mauricek | ||||
* | fix tests for QT_NO_PROCESS and when running tests as root | Harald Fernengel | 2009-07-21 | 14 | -26/+82 |
| | |||||
* | use /usr/bin/env perl as interpreter | Harald Fernengel | 2009-07-21 | 1 | -1/+1 |
| | |||||
* | Remove Stickman editor | Eskil Abrahamsen Blomfeldt | 2009-07-21 | 7 | -437/+0 |
| | | | | | The editor was a just a detail to make the animations and shouldn't be included in the example. | ||||
* | Remove unused gesture related defines and structures | Bradley T. Hughes | 2009-07-21 | 2 | -101/+56 |
| | | | | | We don't use all of them. I also changed the typedefs for the touch related functions to follow the same naming convention. | ||||
* | Compile with QT_NO_PROCESS or QT_NO_SETTINGS | Harald Fernengel | 2009-07-21 | 1 | -3/+3 |
| | | | | | | Feature define logic was wrong Reviewed-by: Robert Griebl | ||||
* | Try to express ourselves better in the explanation for the curve types. | Jan-Arve Sæther | 2009-07-21 | 1 | -81/+84 |
| | | | | | Don't use easing too much. Also add an explanation of what "ease in" and "ease out" is. | ||||
* | Doc fixes to QEasingCurve. | Jan-Arve Sæther | 2009-07-21 | 47 | -19/+25 |
| | | | | | | | | | | | * Remove some references to QAnimation. QAnimation does not exist. * Clarify the documentation for QEasingCurve::Linear. (avoid "tweening" and "no easing") * In the diagrams, change "ease" to "value". * Change the diagram generation code to use antialiased drawing (just as we do in the easingcurve example) Reviewed-by: leo | ||||
* | sunpro doesn't like templated friend classes, either | Oswald Buddenhagen | 2009-07-21 | 2 | -2/+2 |
| | |||||
* | Fix compiler warning about initialization order | hjk | 2009-07-21 | 1 | -2/+2 |
| | | | | reviewed-by: Kim Motoyoshi Kalland | ||||
* | Compile fix with namespaced Qt | hjk | 2009-07-21 | 3 | -0/+12 |
| | |||||
* | Fixes memory leak of global data. | Denis Dzyubenko | 2009-07-21 | 1 | -1/+5 |
| | | | | | Task-number: related to 253013 Reviewed-by: João Abecasis | ||||
* | LayeredPane should not be reported as an IP address edit control to MSAA | Jan-Arve Sæther | 2009-07-21 | 2 | -0/+3 |
| | | | | | | | | | | | | | The reason was that ROLE_SYSTEM_IPADDRESS = 0x3F has been added to MSAA at one point in time. (Can be found in recent versions of OleAcc.idl). Since the MSAA bridge used a direct mapping between QAccessible::Role and MSAA roles this lead to that LayeredPane was interpreted to be an IP address edit control, affecting QStackedWidget (and some relatives). This caused some screen readers to be confused when the same accessible interface had children such as push buttons. I also discussed this change with Harald. Task-number: 257958 | ||||
* | Doc: mark QImage/QPixmap alphaChannel and setAlphaChannel as obsolete. | Volker Hilsheimer | 2009-07-21 | 2 | -41/+38 |
| | | | | | | | They are expensive - which is why QImage::setALphaChannel had been obsoleted in Qt 4.5. Reviewed-by: Gunnar | ||||
* | Match the behavior of the Windows configure and allow the user to type | Benjamin C Meyer | 2009-07-21 | 1 | -1/+1 |
| | | | | | | | 'y' rather then 'yes' Merge-request: 945 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> | ||||
* | Workaround for transacted, locked and inaccesible files | Ritt Konstantin | 2009-07-20 | 2 | -2/+104 |
| | | | | | | | | | | | wich can not be stat'ed in a natural way. FindFirstFile solves this problem. Task-number: 167099 Task-number: 189202 Merge-request: 880 Reviewed-by: Joerg Bornemann <joerg.bornemann@trolltech.com> | ||||
* | Doc: fix links between QGraphicsItem and QTouchEvent | Volker Hilsheimer | 2009-07-20 | 2 | -7/+7 |
| | |||||
* | Doc: fix formatting of lists. | Volker Hilsheimer | 2009-07-20 | 1 | -12/+17 |
| | |||||
* | Doc: not an overload | Volker Hilsheimer | 2009-07-20 | 1 | -2/+0 |
| | |||||
* | Use QVERIFY in benchmarks, insteads of returning silently in case of error | Olivier Goffart | 2009-07-20 | 1 | -4/+2 |
| | |||||
* | Add low level POSIX bench on Windows | Ritt Konstantin | 2009-07-20 | 1 | -6/+31 |
| | | | | | Merge-request: 702 Reviewed-by: Olivier Goffart <ogoffart@trolltech.com> | ||||
* | Adding test case for PNG compression icon loading | miniak | 2009-07-20 | 2 | -0/+33 |
| | | | | | Merge-request: 431 Reviewed-by: Joerg Bornemann <joerg.bornemann@trolltech.com> | ||||
* | Partial fix for Qt issue #244648 - QtIcoHandler does not support large & ↵ | miniak | 2009-07-20 | 1 | -0/+12 |
| | | | | | | | Vista PNG format icons Merge-request: 431 Reviewed-by: Joerg Bornemann <joerg.bornemann@trolltech.com> | ||||
* | Return selectedFilter in QGtkStyle file dialogs | Lukáš Lalinský | 2009-07-20 | 2 | -5/+27 |
| | | | | | | | | | | | Function setupGtkFileChooser is modified to optionally build a map of GtkFileFilters. File dialog methods then use gtk_file_chooser_get_filename to get the current GtkFileFilter and look it up in the map produced by setupGtkFileChooser. This value is then saved in the selectedFilter pointer. Merge-request: 846 Reviewed-by: Jens Bache-Wiig <jbache@trolltech.com> | ||||
* | Doc: clarify relevance for QGraphicsItem and add a few \sa | Volker Hilsheimer | 2009-07-20 | 1 | -26/+84 |
| | |||||
* | Doc: small improvements | Volker Hilsheimer | 2009-07-20 | 2 | -6/+21 |
| | |||||
* | Doc: Make QAction::priority/Priority documentation clearer | Volker Hilsheimer | 2009-07-20 | 1 | -9/+9 |
| | |||||
* | Fixed includes in the gestures public headers. | Denis Dzyubenko | 2009-07-20 | 2 | -10/+9 |
| | | | | Reviewed-by: trustme | ||||
* | Fixes build for Windows Mobile | Thomas Hartmann | 2009-07-20 | 1 | -1/+0 |
| | | | | Reviewed-by: Joerg | ||||
* | doc: Changed several \reimp to \internal | Martin Smith | 2009-07-20 | 8 | -22/+8 |
| | | | | The base function was \internal pr private. | ||||
* | absolute lupdate path for the new test as well | Oswald Buddenhagen | 2009-07-20 | 1 | -1/+1 |
| | |||||
* | Fix static leak to make valgrinding easier. | dt | 2009-07-20 | 1 | -63/+61 |
| | | | | | | Reviewed-By: ossi cherry-picked 98f8fc78bc0f8bcc0e36f19f9728d21063379a51 from creator | ||||
* | micro-optimize: (x.toLower() == y) => !x.compare(y, Qt:: CaseInsensitive) | Oswald Buddenhagen | 2009-07-20 | 1 | -10/+10 |
| | | | | cherry-picked dc0bc586462e2a74fba38f054d303d2226eec4e5 from creator | ||||
* | fix return value of error() & co | Oswald Buddenhagen | 2009-07-20 | 1 | -1/+2 |
| | | | | cherry-picked bd0f0aa182b1422b942ae8efdc773c1a92344eb5 from creator | ||||
* | make message() & co. handling more qmake-like | Oswald Buddenhagen | 2009-07-20 | 1 | -14/+1 |
| | | | | | | which basically means cutting features. heh cherry-picked a03f8643a7a1df8b7c857446a19cb25f9314cdb2 from creator | ||||
* | expand arguments to s// operator | Oswald Buddenhagen | 2009-07-20 | 1 | -1/+1 |
| | | | | cherry-picked e083ad2920d6e5695f309fe5b4b7c7d1b3060d61 from creator | ||||
* | support loops: implement for(), next() & break() | Oswald Buddenhagen | 2009-07-20 | 4 | -4/+149 |
| | | | | cherry-picked 88de3e6a45a41baecb7e56e7cbab7fec30ac0a1c from creator | ||||
* | implement if() test | Oswald Buddenhagen | 2009-07-20 | 1 | -1/+81 |
| | | | | cherry-picked d89338aa810861c636278be4a5bb5d8b23ce99b8 from creator | ||||
* | implement {greater,less}Than(), equals(), clear() & unset() | Oswald Buddenhagen | 2009-07-20 | 1 | -5/+53 |
| | | | | cherry-picked dbdbe92d5d66cbd466bcc0aea532ce79a034ab84 from creator |