summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativesqldatabase.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-191-1/+1
|\
| * Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | | | | | Reviewed-by: Trust Me
* | Add clarifications to QML SQL docs.Michael Brasser2011-01-051-1/+1
|/ | | | Reviewed-by: Bea Lam
* Fix broken database creation caused by previous fixBea Lam2010-12-101-8/+17
| | | | | | | | 16447b1193fedf5fdcf1f3d270fa73c5036a1ba0 removed unused directory but the fix meant that the base Databases directory was no longer automatically created. Task-number: QTBUG-15909
* Fix openDatabaseSync() to not create unused directoryBea Lam2010-12-071-1/+0
| | | | | Task-number: QTBUG-15909 Reviewed-by: Warwick Allison
* 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.