aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/QTBUG-14830.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/QTBUG-14830.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/QTBUG-14830.qml29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/QTBUG-14830.qml b/tests/auto/qtquick1/qdeclarativestates/data/QTBUG-14830.qml
deleted file mode 100644
index 7f9ddbfa2d..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/QTBUG-14830.qml
+++ /dev/null
@@ -1,29 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 1024
- height: 768
-
- Item {
- id: area
- objectName: "area"
- property int numx: 6
- property int cellwidth: 1024/numx
-
- onWidthChanged: {
- width = width>1024?1024:width;
- }
-
- state: 'minimal'
- states: [
- State {
- name: 'minimal'
- PropertyChanges {
- target: area
- width: cellwidth
- }
- }
- ]
-
- }
-}