summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlglobalscriptclass.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Implement custom QML slot invokation logicAaron Kennedy2010-01-151-0/+16
| | | | | | | | Previously QML was inefficiently forwarding the task of invoking Qt slots to QScript. QML does not implement the more advanced argument coercian of QScript and does not support method overloading. These two features are only needed to support legacy C++ classes (of which QML has none), and are not worth the perf cost to support.
* small cleanupThierry Bastian2009-12-041-1/+1
| | | | | | make use of QVariant::userType over Qvariant::type make use of char for 1-string character QCoreApplication::translate is static
* fix includesOswald Buddenhagen2009-12-031-1/+2
| | | | | | | | | | | | - 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-1/+1
| | | | It seems we're going to have to so a syncqt/configure in Qt modules.
* less compile warningsYann Bodson2009-11-041-9/+10
|
* fix headersWarwick Allison2009-10-291-16/+16
|
* Fix more warnings.Michael Brasser2009-10-261-0/+9
|
* Prevent writes to the global objectAaron Kennedy2009-10-051-0/+94
Also add toString() method to qobjects