summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-11-04 23:32:19 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-11-04 23:32:19 (GMT)
commit7f8250ddb43275d59c6f9947eebc8e66642ea5f9 (patch)
treea9abe1085462c6ce9982d75e96b23ff81428b689 /tests/auto/declarative/qmlvisual
parent2875e6b26c9a40ad1f5e4e214937e5a19a56432c (diff)
downloadQt-7f8250ddb43275d59c6f9947eebc8e66642ea5f9.zip
Qt-7f8250ddb43275d59c6f9947eebc8e66642ea5f9.tar.gz
Qt-7f8250ddb43275d59c6f9947eebc8e66642ea5f9.tar.bz2
Whitespace fixes
Supposed to be in the last commit - not really helpful if the filter says something is wrong but pushes it anyways.
Diffstat (limited to 'tests/auto/declarative/qmlvisual')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml24
-rw-r--r--tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml2
-rw-r--r--tests/auto/declarative/qmlvisual/shared/TestTextInput.qml2
3 files changed, 14 insertions, 14 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml
index ad8db33..f36a752 100644
--- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml
@@ -6,35 +6,35 @@ Item{
height:300;
Column {
//Because they have auto width, these three should look the same
- TestTextInput {
- text: "Jackdaws love my big sphinx of quartz";
+ TestTextInput {
+ text: "Jackdaws love my big sphinx of quartz";
horizontalAlignment: TextInput.AlignLeft;
}
- TestTextInput {
- text: "Jackdaws love my big sphinx of quartz";
+ TestTextInput {
+ text: "Jackdaws love my big sphinx of quartz";
horizontalAlignment: TextInput.AlignHCenter;
}
- TestTextInput {
- text: "Jackdaws love my big sphinx of quartz";
+ TestTextInput {
+ text: "Jackdaws love my big sphinx of quartz";
horizontalAlignment: TextInput.AlignRight;
}
Rectangle{ width: 600; height: 10; color: "pink" }
- TestTextInput {
+ TestTextInput {
height: 30;
width: 600;
- text: "Jackdaws love my big sphinx of quartz";
+ text: "Jackdaws love my big sphinx of quartz";
horizontalAlignment: TextInput.AlignLeft;
}
- TestTextInput {
+ TestTextInput {
height: 30;
width: 600;
- text: "Jackdaws love my big sphinx of quartz";
+ text: "Jackdaws love my big sphinx of quartz";
horizontalAlignment: TextInput.AlignHCenter;
}
- TestTextInput {
+ TestTextInput {
height: 30;
width: 600;
- text: "Jackdaws love my big sphinx of quartz";
+ text: "Jackdaws love my big sphinx of quartz";
horizontalAlignment: TextInput.AlignRight;
}
}
diff --git a/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml b/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml
index fb35ae3..e19e418 100644
--- a/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml
+++ b/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml
@@ -7,7 +7,7 @@ TextEdit {
font.family: fixedFont.name
font.pixelSize: 12
cursorDelegate: Rectangle {
- width: 1;
+ width: 1;
color: "black";
visible: edit.cursorVisible
}
diff --git a/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml b/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml
index 8593218..e01c2c2 100644
--- a/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml
+++ b/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml
@@ -7,7 +7,7 @@ TextInput {
font.family: fixedFont.name
font.pixelSize: 12
cursorDelegate: Rectangle {
- width: 1;
+ width: 1;
color: "black";
visible: parent.cursorVisible//bug that 'inp' doesn't seem to work?
}