summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml
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/qdeclarativetextinput/hAlign.qml
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/qdeclarativetextinput/hAlign.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml24
1 files changed, 12 insertions, 12 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;
}
}