diff options
Diffstat (limited to 'tests/benchmarks/declarative/qmlcomponent/data/synthesized_properties.2.qml')
-rw-r--r-- | tests/benchmarks/declarative/qmlcomponent/data/synthesized_properties.2.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/benchmarks/declarative/qmlcomponent/data/synthesized_properties.2.qml b/tests/benchmarks/declarative/qmlcomponent/data/synthesized_properties.2.qml new file mode 100644 index 0000000..27c5646 --- /dev/null +++ b/tests/benchmarks/declarative/qmlcomponent/data/synthesized_properties.2.qml @@ -0,0 +1,15 @@ +import Qt 4.6 + +QtObject { + property int a + property bool b + property double c + property real d + property string e + property url f + property color g + property date h + property var i + property variant j +} + |