Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge remote-tracking branch 'qt/4.8' | Jyri Tahtela | 2011-05-18 | 1 | -0/+2 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/src/examples/wheel.qdoc src/gui/util/qflickgesture.cpp src/gui/util/qflickgesture_p.h src/gui/util/qscroller.cpp src/gui/util/qscroller.h src/gui/util/qscroller_p.h src/gui/util/qscrollerproperties.cpp src/gui/util/qscrollerproperties.h tests/auto/qscroller/tst_qscroller.cpp | ||||
| * | Merge remote-tracking branch 'origin/4.7' into qt-4.8-from-4.7 | Olivier Goffart | 2011-05-06 | 1 | -0/+2 |
| |\ | | | | | | | | | | | | | | | | | | | Conflicts: src/gui/painting/qpainterpath.cpp src/gui/text/qfontengine_ft.cpp src/s60installs/eabi/QtGuiu.def | ||||
| | * | Uninitialized memory is compared. | Martin Jones | 2011-05-05 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Memory is allocated and used without first clearing it. At the least this annoys valgrind, but also has potential for real problems. Change-Id: Icf3fd39f44ee0481dd732510e7f8b3ad6cef477d Task-number: QTBUG-15187 Reviewed-by: Aaron Kennedy | ||||
* | | | Update licenseheader text in source files for qt4.8 | Jyri Tahtela | 2011-05-13 | 1 | -17/+17 |
|/ / | | | | | | | | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me | ||||
* | | Compile with QStringBuilder and QByteArray | Olivier Goffart | 2011-04-01 | 1 | -1/+1 |
|/ | | | | Reviewed-by: Denis | ||||
* | Fix warnings in QtDeclarative | Thiago Macieira | 2011-02-17 | 1 | -1/+1 |
| | |||||
* | Allow property bindings to be easily created from JavaScript | Bea Lam | 2011-01-27 | 1 | -8/+17 |
| | | | | | | | | Properties can now be assigned a function that returns the binding value. Task-number: QTBUG-14964 Reviewed-by: Aaron Kennedy | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11 | Martin Jones | 2011-01-19 | 1 | -2/+2 |
|\ | |||||
| * | Don't crash Qt Creator when debugging an object alias | Aaron Kennedy | 2011-01-13 | 1 | -1/+1 |
| | | | | | | | | Task-number: QTBUG-16131 | ||||
| * | Update copyright year to 2011. | Jason McDonald | 2011-01-10 | 1 | -1/+1 |
| | | | | | | | | Reviewed-by: Trust Me | ||||
* | | Optimization: make QDeclarativePropertyPrivate shared. | Michael Brasser | 2010-12-22 | 1 | -37/+61 |
| | | | | | | | | | | Task-number: QTBUG-15331 Reviewed-by: Aaron Kennedy | ||||
* | | Optimize name lookup for QDeclarativeProperty. | Michael Brasser | 2010-12-21 | 1 | -0/+2 |
|/ | | | | | | | | | If the property is constructed by passing in the property name (and we've verified that it is valid), we can cache that name immediately rather than reconstructing it on the first call to name(). Task-number: QTBUG-15331 Reviewed-by: Martin Jones | ||||
* | QDeclarativeProperty doc improvements | Bea Lam | 2010-12-09 | 1 | -3/+16 |
| | |||||
* | Improve consistency in handling of aliases, bindings and value types | Aaron Kennedy | 2010-11-29 | 1 | -24/+185 |
| | | | | Task-number: QTBUG-13719 | ||||
* | Call the correct vme meta object when connecting alias signals | Aaron Kennedy | 2010-10-19 | 1 | -1/+1 |
| | | | | Task-number: QTCREATORBUG-2769 | ||||
* | Connect property alias change signals on use | Aaron Kennedy | 2010-10-07 | 1 | -1/+55 |
| | | | | Task-number: QTBUG-14089 | ||||
* | If a type is registered under several names, share the attached property object | Aaron Kennedy | 2010-09-28 | 1 | -2/+2 |
| | | | | Task-number: QTBUG-13799 | ||||
* | Simplify type management code | Aaron Kennedy | 2010-08-27 | 1 | -1/+0 |
| | |||||
* | Correcting spelling mistakes in documentation. Part of fix for QTBUG-11938. | Jerome Pasion | 2010-08-09 | 1 | -1/+1 |
| | | | | | Reviewer: David Boddie Task number: QTBUG-11938 | ||||
* | Be consistent in conversion from string (eg. color, int rounding). | Warwick Allison | 2010-05-20 | 1 | -11/+14 |
| | | | | | Task-number: QTBUG-10820 Reviewed-by: Michael Brasser | ||||
* | Simplify code to make next change clearer. | Warwick Allison | 2010-05-20 | 1 | -14/+9 |
| | |||||
* | More class documentation fixes for declarative. | Michael Brasser | 2010-04-16 | 1 | -0/+1 |
| | |||||
* | Add Component.onDestruction attached property | Aaron Kennedy | 2010-04-15 | 1 | -1/+33 |
| | | | | | | | | | This property complements Component.onCompleted. It is emitted before the destruction actually begins (for the most part) so the objects are still alive and accessible. The QtObject.onDestroyed signal is now blocked as it never really worked properly anyway. | ||||
* | Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeData | Aaron Kennedy | 2010-04-15 | 1 | -3/+3 |
| | |||||
* | Update #include of private headers in QtDeclarative | Thiago Macieira | 2010-04-02 | 1 | -10/+10 |
| | | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason. | ||||
* | Optimization: Reduce unnecessary QObject allocations | Aaron Kennedy | 2010-03-17 | 1 | -6/+6 |
| | |||||
* | QDeclarative::isWritable optimization. | Michael Brasser | 2010-03-15 | 1 | -5/+3 |
| | |||||
* | Improve value type binding behavior | Aaron Kennedy | 2010-03-11 | 1 | -24/+40 |
| | | | | | | | | | | | | | | Changing value type bindings in state changes, and implicitly removing them on property assignment was not reliable. Internally the system considered a binding on "font" and one on "font.x" as a binding on two separate properties, even though the "font" binding completely overrides the "font.x" property. Following this change a binding to "font.x" creates a proxy binding object on the "font" property in addition to the "font.x" binding itself. This allows behavior to be consistent across all operations. QT-2920 | ||||
* | doc: Fixed several qdoc errors. | Martin Smith | 2010-03-09 | 1 | -1/+2 |
| | |||||
* | doc: Fixed some QML qdoc errors. | Martin Smith | 2010-03-05 | 1 | -27/+55 |
| | |||||
* | Compile without QVariant::EasingCurve in Qt 4.6.2. | Warwick Allison | 2010-03-04 | 1 | -3/+3 |
| | |||||
* | QDeclarativeProperty::read() returns a QObjectStar when accessing a QObject ↵ | Aaron Kennedy | 2010-03-03 | 1 | -2/+9 |
| | | | | | | property QT-2793 | ||||
* | Doc | Aaron Kennedy | 2010-02-26 | 1 | -5/+45 |
| | |||||
* | Polish QDeclarativeProperty API | Aaron Kennedy | 2010-02-26 | 1 | -25/+86 |
| | |||||
* | Remove unnecessary QDeclarativeProperty::Type enum values | Aaron Kennedy | 2010-02-26 | 1 | -20/+41 |
| | |||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Bea Lam | 2010-02-25 | 1 | -18/+2 |
| | | | | | Conflicts: src/declarative/qml/qdeclarativeproperty.cpp | ||||
* | Rename QDeclarativeMetaProperty -> QDeclarativeProperty | Aaron Kennedy | 2010-02-25 | 1 | -0/+1200 |
There's nothing meta about our properties. |