summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmllistscriptclass.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-149/+0
| | | | QDeclarativeXXX.
* Replace QmlList* and QList* support with a single QmlListProperty typeAaron Kennedy2010-02-221-48/+24
| | | | | | | | As a value type QmlListProperty doesn't consume any memory in the object. It also has a companion QmlListReference class that is part of the public API for C++ developers to interact with that also manages memory issues that existed with previous solutions (if the containing QObject was destroyed it left a dangling pointer).
* Fix copyright year.Jason McDonald2010-02-161-1/+1
| | | | Reviewed-by: Trust Me
* Revert "Replace QList<>* support with QmlListProperty"Martin Jones2010-02-101-36/+21
| | | | This reverts commit d914555badcd4761864657e1e335e657b791453f.
* Replace QList<>* support with QmlListPropertyAaron Kennedy2010-02-091-21/+36
|
* Convert lists to variants on assignment.Aaron Kennedy2010-01-281-2/+27
| | | | QTBUG-5675
* Compile with Qt 4.6.1Aaron Kennedy2010-01-201-2/+2
|
* Update QML following bd3caa48edf2cd53e561cec7ee7ccec6748a4843Aaron Kennedy2010-01-151-6/+6
|
* Update QML to adhere to latest QScriptDeclarativeClassAaron Kennedy2010-01-111-3/+3
|
* Stop using QGuardAaron Kennedy2009-12-231-1/+2
| | | | | | This should allow QGuard to be removed from Qt and QObjectPrivate::ExtraData. Having QmlGuard inside QmlDeclarativeData reduces the number of new's, and creating QmlDeclarativeData is faster than QObjectPrivate::ExtraData anyway.
* fix includesOswald Buddenhagen2009-12-031-2/+3
| | | | | | | | | | | | - include headers from own directory with "" - include headers from own project without private/ - sort includes from most specific to most generic - make headers self-contained - some whitespace unification no attempt was made at making the qt includes consistent regarding the use of module names and forwarding headers. no attempt was made at sorting includes.
* Undo most of 913dd563064e8047fe738fc9c79135adfb928977Warwick Allison2009-12-021-2/+2
| | | | It seems we're going to have to so a syncqt/configure in Qt modules.
* Remove include styles that rely on configure.Warwick Allison2009-12-011-1/+1
| | | | May help modularization (syncqt and configure are Qt-specific).
* less compile warningsYann Bodson2009-11-041-5/+10
|
* fix headersWarwick Allison2009-10-291-16/+16
|
* Support read-only iteration of list propertiesAaron Kennedy2009-10-141-0/+141
Eventually this should be extended to support modifying list properties.