[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [pairs/frameworks] game/qml: changing QtQuick version from 1.x to 2.3
From:       Marco Calignano <marco.calignano () gmail ! com>
Date:       2014-10-24 13:47:24
Message-ID: E1XhfDA-0001mb-70 () scm ! kde ! org
[Download RAW message or body]

Git commit 466ce7f9b0d24781f0c9a3c405fb68157099b0da by Marco Calignano.
Committed on 23/10/2014 at 09:23.
Pushed by calignano into branch 'frameworks'.

changing QtQuick version from 1.x to 2.3

M  +1    -1    game/qml/Author.qml
M  +1    -1    game/qml/Board.qml
M  +1    -1    game/qml/Button.qml
M  +1    -1    game/qml/FancyBackground.qml
M  +1    -1    game/qml/InfoPage.qml
M  +2    -2    game/qml/Main.qml
M  +1    -1    game/qml/OptionsPage.qml
M  +1    -1    game/qml/Page.qml
M  +1    -1    game/qml/ResultsPage.qml
M  +1    -1    game/qml/SelectableListView.qml
M  +1    -1    game/qml/TogglableButton.qml

http://commits.kde.org/pairs/466ce7f9b0d24781f0c9a3c405fb68157099b0da

diff --git a/game/qml/Author.qml b/game/qml/Author.qml
index b328273..9e3ab9f 100644
--- a/game/qml/Author.qml
+++ b/game/qml/Author.qml
@@ -1,4 +1,4 @@
-import QtQuick 1.0
+import QtQuick 2.3
 =

 QtObject {
     property string name: ""
diff --git a/game/qml/Board.qml b/game/qml/Board.qml
index cab389e..01f3d4a 100644
--- a/game/qml/Board.qml
+++ b/game/qml/Board.qml
@@ -18,7 +18,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.1
+import QtQuick 2.3
 =

 Page
 {
diff --git a/game/qml/Button.qml b/game/qml/Button.qml
index 4cc8315..7e9608d 100644
--- a/game/qml/Button.qml
+++ b/game/qml/Button.qml
@@ -19,7 +19,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.1
+import QtQuick 2.3
 =

 Item {
     id: button
diff --git a/game/qml/FancyBackground.qml b/game/qml/FancyBackground.qml
index 241d87c..1f11c6d 100644
--- a/game/qml/FancyBackground.qml
+++ b/game/qml/FancyBackground.qml
@@ -19,7 +19,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.1
+import QtQuick 2.3
  =

 Image
 {
diff --git a/game/qml/InfoPage.qml b/game/qml/InfoPage.qml
index f56fe01..21f5c18 100644
--- a/game/qml/InfoPage.qml
+++ b/game/qml/InfoPage.qml
@@ -18,7 +18,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.0
+import QtQuick 2.3
 =

 Page {
     clip: true
diff --git a/game/qml/Main.qml b/game/qml/Main.qml
index 10552c9..6fa98b1 100644
--- a/game/qml/Main.qml
+++ b/game/qml/Main.qml
@@ -19,8 +19,8 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.0
-import org.kde.plasma.components 0.1 as PlasmaComponents
+import QtQuick 2.3
+import org.kde.plasma.components 2.0 as PlasmaComponents
 =

 FancyBackground
 {
diff --git a/game/qml/OptionsPage.qml b/game/qml/OptionsPage.qml
index d49d695..e94ceb7 100644
--- a/game/qml/OptionsPage.qml
+++ b/game/qml/OptionsPage.qml
@@ -19,7 +19,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.0
+import QtQuick 2.3
 =

 Flickable {
     id: gameSettings
diff --git a/game/qml/Page.qml b/game/qml/Page.qml
index 781b48f..f9e7e1e 100644
--- a/game/qml/Page.qml
+++ b/game/qml/Page.qml
@@ -18,7 +18,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.1
+import QtQuick 2.3
 import org.kde.plasma.core 0.1 as PlasmaCore
 =

 Item {
diff --git a/game/qml/ResultsPage.qml b/game/qml/ResultsPage.qml
index f3d8673..3f50714 100644
--- a/game/qml/ResultsPage.qml
+++ b/game/qml/ResultsPage.qml
@@ -19,7 +19,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.0
+import QtQuick 2.3
 =

 Page {
     ListView {
diff --git a/game/qml/SelectableListView.qml b/game/qml/SelectableListView.=
qml
index cb63c8e..d721a4d 100644
--- a/game/qml/SelectableListView.qml
+++ b/game/qml/SelectableListView.qml
@@ -18,7 +18,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.1
+import QtQuick 2.3
 =

 ListView
 {
diff --git a/game/qml/TogglableButton.qml b/game/qml/TogglableButton.qml
index c72cf4e..64f9d5b 100644
--- a/game/qml/TogglableButton.qml
+++ b/game/qml/TogglableButton.qml
@@ -18,7 +18,7 @@
  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 =

-import QtQuick 1.0
+import QtQuick 2.3
 =

 Item
 {

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic