summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmllanguage/data
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-01-15 04:26:53 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-01-15 04:26:53 (GMT)
commit4a665ff5da05860f5eb46e3982ef3d8163a6cf59 (patch)
tree7fb5275153bf7c639cce6f468e28d5f8c96fa679 /tests/auto/declarative/qmllanguage/data
parentc5be2898cac41cf18ab14c3ee42d4d8c879c3e55 (diff)
downloadQt-4a665ff5da05860f5eb46e3982ef3d8163a6cf59.zip
Qt-4a665ff5da05860f5eb46e3982ef3d8163a6cf59.tar.gz
Qt-4a665ff5da05860f5eb46e3982ef3d8163a6cf59.tar.bz2
Implement custom QML slot invokation logic
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.
Diffstat (limited to 'tests/auto/declarative/qmllanguage/data')
-rw-r--r--tests/auto/declarative/qmllanguage/data/assignSignal.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qmllanguage/data/assignSignal.qml b/tests/auto/declarative/qmllanguage/data/assignSignal.qml
index 3abc04d..2a48df8 100644
--- a/tests/auto/declarative/qmllanguage/data/assignSignal.qml
+++ b/tests/auto/declarative/qmllanguage/data/assignSignal.qml
@@ -1,5 +1,5 @@
import Test 1.0
MyQmlObject {
onBasicSignal: basicSlot()
- onBasicParameterizedSignal: basicSlot(parameter)
+ onBasicParameterizedSignal: basicSlotWithArgs(parameter)
}