From e726fa507dd93224bbb8c36ff53f90f61be76061 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Thu, 9 Jun 2011 15:10:45 +1000 Subject: Rectify over-zealous script results. --- demos/declarative/minehunt/MinehuntCore/Explosion.qml | 2 +- demos/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml | 2 +- demos/declarative/snake/content/Cookie.qml | 2 +- demos/declarative/snake/content/Link.qml | 2 +- 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 -- cgit v1.2.3