summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativesqldatabase.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-4/+4
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Use error enum not numbersWarwick Allison2010-03-291-2/+2
| | | | (easier to doc)
* Don't use QScriptValueIterator to iterate over an arrayKent Hansen2010-03-161-3/+9
| | | | | | | | | | QScriptValueIterator will return properties that are non-enumerable, such as "length". QScriptValueIterator will return properties that are not array elements, such as "foo". QScriptValueIterator is slower than using index-based access, because the iterator builds an array of the string representation of each index, which we don't need.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+428
QDeclarativeXXX.