aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make qmlmin use QmlDevTools library for QML parsingKent Hansen2011-10-072-6/+4
| | | | | | | | | Needed to make it link in non-developer builds. Change-Id: I45f413df5e4c01760aa245463c809c5b502a96c2 Reviewed-on: http://codereview.qt-project.org/6130 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* Say hello to QtQmlDevTools libraryKent Hansen2011-10-079-1/+129
| | | | | | | | | | | | | | | | | | | | | | | QtQmlDevTools is a private helper library. It provides QML/JS file parsing for tools that live outside of the qtdeclarative repository, such as lupdate. This allows us to remove qttools's dependency on the qtdeclarative sources. To use the library: QT += qmldevtools-private #include <private/qdeclarativejsparser_p.h> Change-Id: Ia43751b9be3d9fe05da03e65c6aca1cd9e3fdbbc Reviewed-on: http://codereview.qt-project.org/6116 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Fix possible crash with an empty handleAaron Kennedy2011-10-071-1/+1
| | | | | | | Change-Id: I729c919692c65c0ab4272368b7c98101ef573545 Reviewed-on: http://codereview.qt-project.org/6204 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Fix ListView components being unable to access context properties.Andrew den Exter2011-10-0712-5/+133
| | | | | | | | | | | Where avaialable use the components creation context instead of the views context as the root context for the new item. Task-number: QTBUG-21865 Change-Id: I07e564548de57d58413dc0d7cd151bd8a90886e7 Reviewed-on: http://codereview.qt-project.org/6199 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Bea Lam <bea.lam@nokia.com>
* QDeclarativeIncubator autotestsAaron Kennedy2011-10-0711-32/+234
| | | | | | Change-Id: I5c4594c40fccfe6cb8b198a5fd6c11b468b0562e Reviewed-on: http://codereview.qt-project.org/6118 Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* make qmlmin happy with '\0' in stringCharles Yin2011-10-071-0/+1
| | | | | | | | Change-Id: Ib14e2d75ea83d71c7422eb3f9560e54095300fb9 Reviewed-on: http://codereview.qt-project.org/6089 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com> Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* Fix waiting for active window breakageMartin Jones2011-10-077-110/+52
| | | | | | | | | | Use QTRY_COMPARE(view == qGuiApp->focusWindow()); Change-Id: If5934f4355d9eb8da343f98277e3528f56926cd9 Fixes: QTBUG-21682, QTBUG-21683, QTBUG-21687, QTBUG-21680 Reviewed-on: http://codereview.qt-project.org/6087 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* Fix v8 handle management in QSGLoaderChris Adams2011-10-074-1/+38
| | | | | | | | | | | | | | | | Previously, setting the source to a remote url and specified some initial property values while active was false, and then setting active to true, would cause undefined behaviour. This commit ensures that the handles are managed correctly, and that an appropriate v8 context exists during object creation with initial property values specified. Task-number: QTBUG-21868 Change-Id: I101c6546537aa05aaeb420195aca670bc71f31e1 Reviewed-on: http://codereview.qt-project.org/6109 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Debugger: Call removeEngine also for QV8DebugServiceKai Koehne2011-10-061-0/+1
| | | | | | | Change-Id: Ibb35e577f8844b47a844864f7639321859e20866 Reviewed-on: http://codereview.qt-project.org/6171 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
* Fix missing inline imagesEskil Abrahamsen Blomfeldt2011-10-061-2/+1
| | | | | | | | | | | | | | Oops, the change to support floating images caused a regression, as it caused all images represented by object replacement characters to be ignored instead of only the ones that were floating and were handled elsewhere. The correct test is less strict, only verifying that the layout position is InFlow. Change-Id: Ib28ea595b598bbd047eebe1a704211f0ba139382 Reviewed-on: http://codereview.qt-project.org/6074 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jiang Jiang <jiang.jiang@nokia.com>
* QV8Profiler serviceChristiaan Janssen2011-10-066-1/+417
| | | | | | | | | | Expose the v8 profiler API through the declarative debugging infrastructure. The client side is implemented in Qt Creator. Change-Id: Idf4f3338d2e6756e7774f0704c0e5c4b35b0ed35 Reviewed-on: http://codereview.qt-project.org/5893 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
* qmlplugindump: Don't dump implicit signals.Christian Kamm2011-10-061-5/+18
| | | | | | | | Every property automatically has a xyzChanged signal anyway. Change-Id: I470875a94792c0fc5a6378c8be1e0eddc24a1d5a Reviewed-on: http://codereview.qt-project.org/6144 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* qmlplugindump: Explicitly add QSGMouseEvent to be dumped.Christian Kamm2011-10-061-0/+7
| | | | | | Change-Id: I93f29f151e82a3d47fb10ff587fe28ea27a2d7b4 Reviewed-on: http://codereview.qt-project.org/6143 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* Fix QJSEngine::newQObject ownership behaviourSimon Hausmann2011-10-063-23/+38
| | | | | | | | | | | | | | Ensure the indestructible flag is set to false for objects wrapped through QJSEngine::newQObject, to ensure that they get deleted upon gc when they don't have a parent. Re-enabled the QJSEngine::garbageCollect and ownership auto-tests that verified this behaviour. Change-Id: I181bff0cc44d071d650a2f73494e49cce6ad538e Reviewed-on: http://codereview.qt-project.org/2398 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
* Add a get function to VisualDataGroup.Andrew den Exter2011-10-067-17/+636
| | | | | | | | | | | | | This returns an object with properties for accessing the model data of an item, membership in the visual data model's groups and the index of the item in each group. Task-number: QTBUG-21512 Change-Id: I878442c8a2e30cc6f9941f7412303581613a6142 Reviewed-on: http://codereview.qt-project.org/5515 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Ensure view delegates are object parented to the contentItemMartin Jones2011-10-061-0/+2
| | | | | | | | | | Caused a leak which resulted in persistent v8 handles not being disposed. Change-Id: I5c10ff619531976ab61d9ce1ff8327c4a40cfd5e Reviewed-on: http://codereview.qt-project.org/6112 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Chris Adams <christopher.adams@nokia.com>
* Fix for qsgtext autotestsYann Bodson2011-10-062-9/+12
| | | | | | | Change-Id: If02d4cb69b4f729b85b47222c17a0b1642e649fb Reviewed-on: http://codereview.qt-project.org/6111 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Don't call componentComplete() on a VDM until its view is complete.Andrew den Exter2011-10-066-4/+29
| | | | | | | | | | This is more consistent with the behaviour you get when constructing a VisualDataModel explicitly. Change-Id: I33e32c7747ff3153449a88b9c7d894807e7e4b9a Reviewed-on: http://codereview.qt-project.org/6014 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Add Particles basic acceptance manual tests.Damian Jansen2011-10-0612-347/+992
| | | | | | | Change-Id: I9be3f3257d74e6a3535f8137083e5dad31965c87 Reviewed-on: http://codereview.qt-project.org/5906 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
* add canvas drawImage unit testsCharles Yin2011-10-0625-21/+659
| | | | | | | Change-Id: I772bf58bead4b536cc632983846743e0d576bedd Reviewed-on: http://codereview.qt-project.org/6100 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Charles Yin <charles.yin@nokia.com>
* QSGLoader shouldn't load component when active is falseChris Adams2011-10-065-17/+69
| | | | | | | | | | | | | Previously, QSGLoader still loaded the component specified, but didn't instantiate the item. This commit ensures that no component is loaded from the source, and that the onLoaded signal is emitted only when loading occurs (when the loader is active). Task-number: QTBUG-21710 Change-Id: I2d83603ef84d6942fb84141e9e146d2cf9654fc4 Reviewed-on: http://codereview.qt-project.org/5915 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* Disable particle system tests for CIAlan Alpert2011-10-0621-21/+21
| | | | | | | | | | | | Particle System tests appear to be unstable when run in CI. They should not have their results counted until this issue is resolved. Task-number: QTBUG-21867 Change-Id: Ib6a7cd6a48f96bdb1558a1061e0952f583bbcd91 Reviewed-on: http://codereview.qt-project.org/6106 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Allow incubators to be driven recursivelyAaron Kennedy2011-10-069-8/+212
| | | | | | Change-Id: If8ce239372c3cf3166b666329ba812b25ee54669 Reviewed-on: http://codereview.qt-project.org/6102 Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Always delete object if incubator is cancelledAaron Kennedy2011-10-065-0/+81
| | | | | | | Change-Id: Iad04340bac9d1345069e540e6bf9dbf671ce9226 Reviewed-on: http://codereview.qt-project.org/6088 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Mark failing tests as insignificant.Toby Tomkins2011-10-063-3/+3
| | | | | | | Change-Id: I105d94624d5c14a54375f59cf48955ea99553f86 Reviewed-on: http://codereview.qt-project.org/6095 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
* Add JavaScript "var" property type to QMLChris Adams2011-10-0652-126/+1519
| | | | | | | | | | | This commit adds a new syntax which allows "var" type properties which can have JavaScript objects (as well as other basic types) assigned to them. Such JavaScript objects cannot be bound to. Task-number: QMLNG-18 Change-Id: If7f5045f4669e0d5c1b8d0891ed765128d0bc1c6 Reviewed-on: http://codereview.qt-project.org/1466 Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Add support for filtering VisualDataModels.Andrew den Exter2011-10-0615-222/+4811
| | | | | | | | | | | | | | | | | Add a VisualDataGroup element which items within a VisualDataModel can be assigned to. Setting the group property of a VisualDataModel or one of its parts models will filter the items visible within a view to just items belonging to that group. By default all items belong to an 'items' group. The VisualDataModel attached object includes properties indicating whether a item is a member of a group and its index in the group. Task-number: QTBUG-21513 QTBUG-21515 Change-Id: If3df6a359a888a6f79923775d2f78076d5e7d2cf Reviewed-on: http://codereview.qt-project.org/4115 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Add more unit tests for qsgcanvasitem and fix unstable testsCharles Yin2011-10-0625-251/+6304
| | | | | | | Change-Id:I5fc11a5874d55ad423dc1fb9c3e1b75a38003465 Reviewed-on: http://codereview.qt-project.org/5962 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Charles Yin <charles.yin@nokia.com>
* Fix TextInput and TextEdit cursorRectangleSize autotestsJoona Petrell2011-10-052-14/+9
| | | | | | | | | | Task-number: QTBUG-21691 Change-Id: I7fdcbcb0fd8b3442f5af91aa87f4337c7597f95b Reviewed-on: http://codereview.qt-project.org/5865 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Pekka Vuorela <pekka.ta.vuorela@nokia.com> Reviewed-by: Andrew den Exter <andrew.den-exter@nokia.com>
* Don't overwrite block formats in QSGTextEskil Abrahamsen Blomfeldt2011-10-051-1/+1
| | | | | | | | | | | When QSGText has rich text, we need to retain the block formats already in the document instead of overwriting them. E.g. lists would not work because of this bug. Change-Id: I4cdae55e2358950a330c61613b5fd41e1986dc13 Reviewed-on: http://codereview.qt-project.org/6059 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jiang Jiang <jiang.jiang@nokia.com>
* Don't accidentally use atlas images in particle nodesGunnar Sletta2011-10-052-2/+9
| | | | | | | Change-Id: I3058d9262bbc32c873ba26e51b04668f89ed060a Reviewed-on: http://codereview.qt-project.org/6039 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kim M. Kalland <kim.kalland@nokia.com>
* Doc: Adding qtdeclarative documentation configuration files.Jerome Pasion2011-10-055-0/+804
| | | | | | | | | | | | | We need a modularized Qt Quick documentation package that only contains Qt Quick 2. Add a make target for the documentation. Copied Qt 5's offline style as a starting CSS template. Change-Id: I2298f23c7695ebbe38f43b89626431a2e8059a9a Reviewed-on: http://codereview.qt-project.org/5891 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
* Fix floating images in QSGTextNodeEskil Abrahamsen Blomfeldt2011-10-051-10/+16
| | | | | | | | | | | | | | When images are floating and we encounter the object replacement character, we should ignore them, as they're done by special handling of the QTextFrame. We also need to make sure they are not attempted inlined by passing the layout position of the frame to addTextObject(), and we need to set a valid QTextLine for the object to make sure it's added to the graph. Change-Id: Ia43ef3fd4bb9c7b48e0862071118ee0f176212bd Reviewed-on: http://codereview.qt-project.org/6036 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Jiang Jiang <jiang.jiang@nokia.com>
* Make sure the Image texture provider does not return an atlassed textureGunnar Sletta2011-10-053-3/+30
| | | | | | | | | | | | | | | | | | This has the implication that textures from texture providers are always the complete texture with coordinates from 0-1, which is means we get a copy for atlas textures which may end up affecting performance. Alternatives are: - ShaderEffect does this, which means texture providers can provide atlas textures. - We expose the subrect to ShaderEffect, which means an API change in all shader effect classes, and let the vertex shader solve this. Worst API, fastest and most memory efficient. Change-Id: Id58eb866f315012637345a6f731626abf4a7a86c Reviewed-on: http://codereview.qt-project.org/6029 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kim M. Kalland <kim.kalland@nokia.com>
* Support atlased textures in QSGNinePatchNodeGunnar Sletta2011-10-052-15/+22
| | | | | | | Change-Id: I0433d15c22d0f7b9de2d5a5590f51a554e56a912 Reviewed-on: http://codereview.qt-project.org/6028 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kim M. Kalland <kim.kalland@nokia.com>
* V8Debugger: Code beautificationKai Koehne2011-10-054-44/+39
| | | | | | | | | | Convert to from QString to QByteArray only when necessary. Also move private methods into private class. Change-Id: Iac28990f16c588e0172356c9395b7771f01f4817 Reviewed-on: http://codereview.qt-project.org/6022 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
* Ensure all persistent handles are disposed properlyChris Adams2011-10-053-1/+7
| | | | | | | | | | Previously, some handles were leaking, which was causing a dramatic slowdown in v8 gc speed over time. Change-Id: I1e8d674b48647b7a0063a4b1c8d83130795502a0 Reviewed-on: http://codereview.qt-project.org/6026 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Set isRoot correctly for value typesAaron Kennedy2011-10-051-5/+16
| | | | | | | Change-Id: I1ddbe5a76fd804df51a3feaf1c0a9004a67abf9f Reviewed-on: http://codereview.qt-project.org/6023 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Declarative: Compile on Windows.Friedemann Kleint2011-10-053-6/+9
| | | | | | | | | | Initial-patch-by: Kent Hansen <kent.hansen@nokia.com> Change-Id: Ieb7ff0537b641597fd0334ae1cb359f89c45ad50 Reviewed-on: http://codereview.qt-project.org/5871 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kent Hansen <kent.hansen@nokia.com> Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
* Add .pro file to auto test dirAlan Alpert2011-10-054-1/+34
| | | | | | | | | Also stabilize some tests Change-Id: I1b508756ffca6a05d495c52d84f46fcaeafe879a Reviewed-on: http://codereview.qt-project.org/5952 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Sprites can now have varying width and heightAlan Alpert2011-10-059-61/+120
| | | | | | | | | | | | | Varying between Sprites, or between width and height, not within a single Sprite. For ImageParticle only, SpriteImage changes will be in a later commit. Also adds spriteInterpolation boolean. Change-Id: I80681e44f26985a6f6a6b83bd162f6231c7f28c4 Reviewed-on: http://codereview.qt-project.org/6002 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Split GroupGoal out of SpriteGoalAlan Alpert2011-10-058-13/+243
| | | | | | | | | | Leaving SpriteGoal alone for a few weeks with a deprecation message, but a functioning GroupGoal has been added. Change-Id: I395046c00526e7caa38bdbc499a8191308c476fa Reviewed-on: http://codereview.qt-project.org/5950 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Mark failing tests as insignificant.Toby Tomkins2011-10-054-3/+4
| | | | | | | Change-Id: I5aa4d13fb44c2ec184d405b075d71244782247a9 Reviewed-on: http://codereview.qt-project.org/6007 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Missed a spot when refactoring activeGroupAlan Alpert2011-10-051-1/+1
| | | | | | | Change-Id: Ia6b884557876efb98ab1e0785102cd81de9bbbed Reviewed-on: http://codereview.qt-project.org/5966 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Update particles autotests to not use SRCDIRAlan Alpert2011-10-0542-45/+87
| | | | | | | Change-Id: I1b508756ffca6a05d495c52d84f46fcaeafe8797 Reviewed-on: http://codereview.qt-project.org/5947 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Couple more performance tips.Martin Jones2011-10-054-28/+22
| | | | | | Change-Id: Id0f5db95addd6ecc6c2816ba8dbfae58fa8e231f Reviewed-on: http://codereview.qt-project.org/6001 Reviewed-by: Martin Jones <martin.jones@nokia.com>
* qmlplugindump: Add test for running with -builtins.Christian Kamm2011-10-043-1/+118
| | | | | | | | | | | | | | | The main idea is to check for crashes: When instantiable C++ based QML components have uninitialized QObject * members, qmlplugindump can crash while collecting types to dump. That will make it impossible for users to use qmlplugindump and should be fixed in the responsible classes constructor. On unix it has a crash handler that tries to pinpoint which class and property caused the problem. Change-Id: Ie049cae27d94920f3d8346ca7075eba5a11c2a37 Reviewed-on: http://codereview.qt-project.org/5976 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* Use QCoreApplication to get the qml debug argumentsKent Hansen2011-10-041-2/+2
| | | | | | | | | | | | The debug arguments string was moved from QApplication to QCoreApplication as part of the Qt refactor/library split, so there's no need to depend on QGuiApplication. Change-Id: I0eb87be318b80290be656d707e3d38020f765a90 Reviewed-on: http://codereview.qt-project.org/5883 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kai Koehne <kai.koehne@nokia.com> Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@nokia.com>
* Initialize members in the right orderKent Hansen2011-10-041-1/+1
| | | | | | | | | ... to fix compiler warning. Change-Id: I3328d17b498b22d9c8703d0f034b3b9f944c1b17 Reviewed-on: http://codereview.qt-project.org/5880 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
* more debugGunnar Sletta2011-10-041-0/+3
| | | | | | | Change-Id: I49c76424bd987059e74c0f13826d3ca7dd07e7ef Reviewed-on: http://codereview.qt-project.org/5967 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Yoann Lopes <yoann.lopes@nokia.com>