aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/deprecated-property/modules/themodule/m.qbs
blob: 106ed4135f2bd1e5099c713182dad22d33644c73 (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

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"
    }
}