aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-07-26 14:21:22 +1000
committerQt by Nokia <qt-info@nokia.com>2011-07-26 06:29:54 +0200
commite5be1482c81fb3a502e2e5f8e56f11f182c2adab (patch)
tree7151d469ce39bc75358fec89111b01871057065a /examples
parentdaf6a270888d2f70e57a838d0ba4adae954c3d22 (diff)
Update PhotoViewer to QtQuick 2.0
Seems to work fine. Change-Id: I2da6487a6b3a5dc9ce1fb2036450ef0a0588430f Reviewed-on: http://codereview.qt.nokia.com/2149 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Yann Bodson <yann.bodson@nokia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml2
-rw-r--r--examples/declarative/photoviewer/PhotoViewerCore/BusyIndicator.qml2
-rw-r--r--examples/declarative/photoviewer/PhotoViewerCore/Button.qml2
-rw-r--r--examples/declarative/photoviewer/PhotoViewerCore/EditableButton.qml2
-rw-r--r--examples/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml2
-rw-r--r--examples/declarative/photoviewer/PhotoViewerCore/ProgressBar.qml2
-rw-r--r--examples/declarative/photoviewer/PhotoViewerCore/RssModel.qml2
-rw-r--r--examples/declarative/photoviewer/PhotoViewerCore/Tag.qml2
-rw-r--r--examples/declarative/photoviewer/photoviewer.qml2
9 files changed, 9 insertions, 9 deletions
diff --git a/examples/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml b/examples/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml
index 61005382da..6a5d16e6f6 100644
--- a/examples/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml
+++ b/examples/declarative/photoviewer/PhotoViewerCore/AlbumDelegate.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
Component {
id: albumDelegate
diff --git a/examples/declarative/photoviewer/PhotoViewerCore/BusyIndicator.qml b/examples/declarative/photoviewer/PhotoViewerCore/BusyIndicator.qml
index 14eb6439c0..f2119f11c0 100644
--- a/examples/declarative/photoviewer/PhotoViewerCore/BusyIndicator.qml
+++ b/examples/declarative/photoviewer/PhotoViewerCore/BusyIndicator.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
Image {
id: container
diff --git a/examples/declarative/photoviewer/PhotoViewerCore/Button.qml b/examples/declarative/photoviewer/PhotoViewerCore/Button.qml
index 481bcc5a55..c72dbe45fd 100644
--- a/examples/declarative/photoviewer/PhotoViewerCore/Button.qml
+++ b/examples/declarative/photoviewer/PhotoViewerCore/Button.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
Item {
id: container
diff --git a/examples/declarative/photoviewer/PhotoViewerCore/EditableButton.qml b/examples/declarative/photoviewer/PhotoViewerCore/EditableButton.qml
index 9c47310ebd..56bf40856c 100644
--- a/examples/declarative/photoviewer/PhotoViewerCore/EditableButton.qml
+++ b/examples/declarative/photoviewer/PhotoViewerCore/EditableButton.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
Item {
id: container
diff --git a/examples/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml b/examples/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml
index 4c1692cb08..00f45ea47a 100644
--- a/examples/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml
+++ b/examples/declarative/photoviewer/PhotoViewerCore/PhotoDelegate.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.1
+import QtQuick 2.0
import "script/script.js" as Script
Package {
diff --git a/examples/declarative/photoviewer/PhotoViewerCore/ProgressBar.qml b/examples/declarative/photoviewer/PhotoViewerCore/ProgressBar.qml
index 805eac208e..5834398c72 100644
--- a/examples/declarative/photoviewer/PhotoViewerCore/ProgressBar.qml
+++ b/examples/declarative/photoviewer/PhotoViewerCore/ProgressBar.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
Item {
id: container
diff --git a/examples/declarative/photoviewer/PhotoViewerCore/RssModel.qml b/examples/declarative/photoviewer/PhotoViewerCore/RssModel.qml
index 9f6c004952..b92685c765 100644
--- a/examples/declarative/photoviewer/PhotoViewerCore/RssModel.qml
+++ b/examples/declarative/photoviewer/PhotoViewerCore/RssModel.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
XmlListModel {
property string tags : ""
diff --git a/examples/declarative/photoviewer/PhotoViewerCore/Tag.qml b/examples/declarative/photoviewer/PhotoViewerCore/Tag.qml
index 486a28d960..e87cac778f 100644
--- a/examples/declarative/photoviewer/PhotoViewerCore/Tag.qml
+++ b/examples/declarative/photoviewer/PhotoViewerCore/Tag.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
Flipable {
id: flipable
diff --git a/examples/declarative/photoviewer/photoviewer.qml b/examples/declarative/photoviewer/photoviewer.qml
index d2eaa56c1a..d569c87cb2 100644
--- a/examples/declarative/photoviewer/photoviewer.qml
+++ b/examples/declarative/photoviewer/photoviewer.qml
@@ -39,7 +39,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
import "PhotoViewerCore"
Rectangle {