aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-06-09 15:10:45 +1000
committerAlan Alpert <alan.alpert@nokia.com>2011-06-09 15:13:06 +1000
commite726fa507dd93224bbb8c36ff53f90f61be76061 (patch)
tree9543845e4a521626393e11ef490034aa58d1f2a1
parent124b71128feb596b136a545eb128c3b0e7093bf7 (diff)
Rectify over-zealous script results.
-rw-r--r--demos/declarative/minehunt/MinehuntCore/Explosion.qml2
-rw-r--r--demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml2
-rw-r--r--demos/declarative/snake/content/Cookie.qml2
-rw-r--r--demos/declarative/snake/content/Link.qml2
4 files changed, 4 insertions, 4 deletions
diff --git a/demos/declarative/minehunt/MinehuntCore/Explosion.qml b/demos/declarative/minehunt/MinehuntCore/Explosion.qml
index 668d7b1a19..33eabf033c 100644
--- a/demos/declarative/minehunt/MinehuntCore/Explosion.qml
+++ b/demos/declarative/minehunt/MinehuntCore/Explosion.qml
@@ -40,7 +40,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtQuick.Particles 1.0
+import Qt.labs.particles 1.0
Item {
property bool explode : false
diff --git a/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml b/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml
index c6b3e1b577..9fcd68b1ff 100644
--- a/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml
+++ b/demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml
@@ -85,7 +85,7 @@ Component {
anchors.centerIn: parent; anchors.verticalCenterOffset: -30
path: Path {
PathAttribute { name: 'z'; value: 9999.0 }
- PathLineShape { x: 1; y: 1 }
+ PathLine { x: 1; y: 1 }
PathAttribute { name: 'z'; value: 0.0 }
}
}
diff --git a/demos/declarative/snake/content/Cookie.qml b/demos/declarative/snake/content/Cookie.qml
index 6efed6a154..a076978999 100644
--- a/demos/declarative/snake/content/Cookie.qml
+++ b/demos/declarative/snake/content/Cookie.qml
@@ -40,7 +40,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtQuick.Particles 1.0
+import Qt.labs.particles 1.0
Item {
id: root
diff --git a/demos/declarative/snake/content/Link.qml b/demos/declarative/snake/content/Link.qml
index 4c58c4dd5c..8c1f4866bb 100644
--- a/demos/declarative/snake/content/Link.qml
+++ b/demos/declarative/snake/content/Link.qml
@@ -40,7 +40,7 @@
****************************************************************************/
import QtQuick 1.0
-import QtQuick.Particles 1.0
+import Qt.labs.particles 1.0
Item { id:link
property bool dying: false