aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/deprecated-property/modules/themodule/m.qbs
blob: 47f1ea664315a4a0d3113ec983160b650a20ccbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import qbs

Module {
    property bool newProp
    property bool oldProp
    property bool veryOldProp

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