aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/excessiveParameters.qml
blob: 1b801d4d0241d609a195e613c76c4f2b401dbbce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQml

QtObject {
    id: root
    signal testSignal(string a, int b, string c, bool d, bool e, real f, real g, bool h, int i, int j, string k, int l, string m, string n)
    signal foo()
    onTestSignal: foo()

    property Timer timer: Timer {
        interval: 10
        running: true
        onTriggered: root.testSignal("a", 1, "b", true, true, 0.1, 0.1, true, 1, 1, "a", 1, "a", "a")
    }
}