summaryrefslogtreecommitdiffstats
path: root/package/qt5cinex/0001-Fix-execution-problem-with-Qt5.3.patch
blob: ceae8cc898d6c9734eb9665ebcf010caf6b09c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
From 9b045ee7988daf3bb4c7cbe1ed1b9d744820e82b Mon Sep 17 00:00:00 2001
From: Pierre Le Magourou <pierre.lemagourou@openwide.fr>
Date: Mon, 15 Dec 2014 11:54:51 +0100
Subject: [PATCH] Fix execution problem with Qt5.3.

This patch has been inspired from Open Embedded meta-qt5.

Signed-off-by: Pierre Le Magourou <pierre.lemagourou@openwide.fr>
---
 content/SettingsView.qml | 4 ++--
 content/Switch.qml       | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/content/SettingsView.qml b/content/SettingsView.qml
index 7944803..a0ddcc8 100644
--- a/content/SettingsView.qml
+++ b/content/SettingsView.qml
@@ -127,8 +127,8 @@ Item {
             Switch {
                 text: "Do you l-o-v-e colors?"
                 checked: settings.showColors
-                onText: "Yes"
-                offText: "No!"
+                textON: "Yes"
+                textOFF: "No!"
                 onCheckedChanged: {
                     settings.showColors = checked;
                 }
diff --git a/content/Switch.qml b/content/Switch.qml
index 967c03f..66955fc 100644
--- a/content/Switch.qml
+++ b/content/Switch.qml
@@ -6,8 +6,8 @@ Item {
 
     property alias text: textItem.text
     property bool checked: false
-    property string onText: "On"
-    property string offText: "Off"
+    property string textON: "On"
+    property string textOFF: "Off"
 
     QtObject {
         id: priv
@@ -120,7 +120,7 @@ Item {
             color: "#000000"
             font.pixelSize: 18
             font.bold: true
-            text: onText
+            text: textON
         }
         Text {
             anchors.verticalCenter: parent.verticalCenter
@@ -129,7 +129,7 @@ Item {
             color: "#ffffff"
             font.pixelSize: 18
             font.bold: true
-            text: offText
+            text: textOFF
         }
 
         Image {
-- 
2.1.3

OpenPOWER on IntegriCloud