diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-09-29 12:12:22 +1000 |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-09-29 12:12:22 +1000 |
commit | 49452ad6b22e080b1dfdfde38c21c48bb910a1ae (patch) | |
tree | 3afdab3cad225f8f223e9f46bb2fc99cbabcd4ab /examples/declarative/animation/easing | |
parent | 4fcf055f66cc23c9e60a7add489e394420e71914 (diff) | |
download | qt4-tools-49452ad6b22e080b1dfdfde38c21c48bb910a1ae.tar.gz |
Replace all occurances of "Qt 4.7" with "QtQuick 1.0"
Task-number: QTBUG-13799
Reviewed-by: Martin Jones
Diffstat (limited to 'examples/declarative/animation/easing')
-rw-r--r-- | examples/declarative/animation/easing/content/QuitButton.qml | 4 | ||||
-rw-r--r-- | examples/declarative/animation/easing/easing.qml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/animation/easing/content/QuitButton.qml b/examples/declarative/animation/easing/content/QuitButton.qml index 9dfe9bd594..cbbf916a4b 100644 --- a/examples/declarative/animation/easing/content/QuitButton.qml +++ b/examples/declarative/animation/easing/content/QuitButton.qml @@ -38,7 +38,7 @@ ** ****************************************************************************/ -import Qt 4.7 +import QtQuick 1.0 Image { source: "quit.png" scale: quitMouse.pressed ? 0.8 : 1.0 @@ -49,4 +49,4 @@ Image { anchors.margins: -10 onClicked: Qt.quit() } -}
\ No newline at end of file +} diff --git a/examples/declarative/animation/easing/easing.qml b/examples/declarative/animation/easing/easing.qml index 9349a25cea..fd974d9b59 100644 --- a/examples/declarative/animation/easing/easing.qml +++ b/examples/declarative/animation/easing/easing.qml @@ -38,7 +38,7 @@ ** ****************************************************************************/ -import Qt 4.7 +import QtQuick 1.0 import "content" Rectangle { |