summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Walters <ian.walters@nokia.com>2009-05-06 06:54:28 (GMT)
committerIan Walters <ian.walters@nokia.com>2009-05-06 06:54:28 (GMT)
commit05fce71fbbd9b70f19f8a7cb37cd85651533cd62 (patch)
tree491095d7120b2a2b953e93aa04e325ebf2bdeccf
parent99977ec99d87bad9582ee891fd2531f484a66e04 (diff)
downloadQt-05fce71fbbd9b70f19f8a7cb37cd85651533cd62.zip
Qt-05fce71fbbd9b70f19f8a7cb37cd85651533cd62.tar.gz
Qt-05fce71fbbd9b70f19f8a7cb37cd85651533cd62.tar.bz2
Quote align center enum appropriately
-rw-r--r--examples/declarative/tutorials/contacts/1_Drawing_and_Animation/3/RemoveButton.qml2
-rw-r--r--examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4/RemoveButton.qml2
-rw-r--r--examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4a/RemoveButton.qml2
-rw-r--r--examples/declarative/tutorials/contacts/1_Drawing_and_Animation/5/RemoveButton.qml2
-rw-r--r--examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml2
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/3/RemoveButton.qml b/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/3/RemoveButton.qml
index 964975f..3c20462 100644
--- a/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/3/RemoveButton.qml
+++ b/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/3/RemoveButton.qml
@@ -32,7 +32,7 @@ Rect {
anchors.rightMargin: 4
font.bold: true
color: "white"
- hAlign: AlignHCenter
+ hAlign: "AlignHCenter"
text: "Remove"
}
}
diff --git a/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4/RemoveButton.qml b/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4/RemoveButton.qml
index 79aae7a..a359aaf 100644
--- a/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4/RemoveButton.qml
+++ b/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4/RemoveButton.qml
@@ -71,7 +71,7 @@ Rect {
anchors.rightMargin: 4
font.bold: true
color: "white"
- hAlign: AlignHCenter
+ hAlign: "AlignHCenter"
text: "Remove"
opacity: 0
}
diff --git a/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4a/RemoveButton.qml b/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4a/RemoveButton.qml
index ce8459d..4db49ea 100644
--- a/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4a/RemoveButton.qml
+++ b/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/4a/RemoveButton.qml
@@ -78,7 +78,7 @@ Rect {
anchors.rightMargin: 4
font.bold: true
color: "white"
- hAlign: AlignHCenter
+ hAlign: "AlignHCenter"
text: "Remove"
opacity: 0
}
diff --git a/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/5/RemoveButton.qml b/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/5/RemoveButton.qml
index 6c9078a..29d464b 100644
--- a/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/5/RemoveButton.qml
+++ b/examples/declarative/tutorials/contacts/1_Drawing_and_Animation/5/RemoveButton.qml
@@ -67,7 +67,7 @@ Rect {
anchors.rightMargin: 4
font.bold: true
color: "white"
- hAlign: AlignHCenter
+ hAlign: "AlignHCenter"
text: "Remove"
opacity: 0
}
diff --git a/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml b/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml
index a358b21..bf6e82d 100644
--- a/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml
+++ b/examples/declarative/tutorials/contacts/2_Reuse/1b/lib/RemoveButton.qml
@@ -69,7 +69,7 @@ Rect {
anchors.rightMargin: 4
font.bold: true
color: "white"
- hAlign: AlignHCenter
+ hAlign: "AlignHCenter"
text: "Remove"
opacity: 0
}