aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/changeslots/propertyChangeSlots.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/changeslots/propertyChangeSlots.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/changeslots/propertyChangeSlots.qml27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/changeslots/propertyChangeSlots.qml b/tests/auto/declarative/qdeclarativeecmascript/data/changeslots/propertyChangeSlots.qml
deleted file mode 100644
index f91fb71f1f..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/changeslots/propertyChangeSlots.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 2.0
-
-Item {
- property int changeCount: 0
-
- property bool normalName: false
- property bool _nameWithUnderscore: false
- property bool ____nameWithUnderscores: false
-
- onNormalNameChanged: {
- changeCount = changeCount + 1;
- }
-
- on_NameWithUnderscoreChanged: {
- changeCount = changeCount + 2;
- }
-
- on____NameWithUnderscoresChanged: {
- changeCount = changeCount + 3;
- }
-
- Component.onCompleted: {
- normalName = true;
- _nameWithUnderscore = true;
- ____nameWithUnderscores = true;
- }
-}