aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/singleton/registeredComposite/CompositeType.qml
blob: 5c86c21ffb462a4077c5f39a3884d42f70c42d8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0
pragma Singleton

Item {
     id: singletonId

     property int testProp1: 325
     property int testProp2: 225
     property int testProp3: 155

     width: 25; height: 25

     Rectangle {
         id: rectangle
         border.color: "white"
         anchors.fill: parent
     }
}