aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/deprecated-property/modules/themodule/m.qbs
blob: cd6b0b70c6b070ed5349396b447512289b10ed8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import qbs // FIXME: Don't remove this import because then the test fails!

Module {
    property bool newProp
    property bool oldProp
    property bool forgottenProp

    PropertyOptions {
        name: "newProp"
        description: "Use this, it's good!"
    }
    PropertyOptions {
        name: "oldProp"
        description: "Use newProp instead."
        removalVersion: "99.9"
    }
    PropertyOptions {
        name: "veryOldProp"
        description: "Use newProp instead."
        removalVersion: "1.3"
    }
    PropertyOptions {
        name: "forgottenProp"
        description: "Use newProp instead."
        removalVersion: "1.8"
    }
}