summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/script/data/global_prop.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/declarative/script/data/global_prop.qml')
-rw-r--r--tests/benchmarks/declarative/script/data/global_prop.qml7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/benchmarks/declarative/script/data/global_prop.qml b/tests/benchmarks/declarative/script/data/global_prop.qml
index 908cecf..4fb7ee7 100644
--- a/tests/benchmarks/declarative/script/data/global_prop.qml
+++ b/tests/benchmarks/declarative/script/data/global_prop.qml
@@ -46,9 +46,8 @@ Rectangle {
width: 200; height: 200
signal triggered
- onTriggered: Program.doSomething();
+ signal incrementTriggered
- function doSomething() {
- Program.doSomething();
- }
+ onTriggered: Program.doSomething();
+ onIncrementTriggered: Program.doIncrement();
}