summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools/qsize
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@nokia.com>2011-10-25 00:11:03 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-26 13:50:12 +0200
commitc3313fdd1c0be9eb02724a0b6dc6cc14028bd409 (patch)
tree39ff04f367163e0dd99342f64f6a021bd5fbd2b2 /tests/auto/corelib/tools/qsize
parent264272fb88358c1bc681442bbfd4673de29ef969 (diff)
Doc: Fixing typo
Fix typos I was able to find in `tests/auto' directory. Change-Id: Id0bfcc18301381ac8b1ca8d5af17bd926e5913d4 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@nokia.com>
Diffstat (limited to 'tests/auto/corelib/tools/qsize')
-rw-r--r--tests/auto/corelib/tools/qsize/tst_qsize.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/corelib/tools/qsize/tst_qsize.cpp b/tests/auto/corelib/tools/qsize/tst_qsize.cpp
index 36654df618..ae9426c568 100644
--- a/tests/auto/corelib/tools/qsize/tst_qsize.cpp
+++ b/tests/auto/corelib/tools/qsize/tst_qsize.cpp
@@ -195,7 +195,7 @@ void tst_QSize::expandedTo_data()
QTest::newRow("data0") << QSize(10,12) << QSize(6,4) << QSize(10,12);
QTest::newRow("data1") << QSize(0,0) << QSize(6,4) << QSize(6,4);
// This should pick the highest of w,h components independently of each other,
- // thus the result dont have to be equal to neither input1 nor input2.
+ // thus the results don't have to be equal to neither input1 nor input2.
QTest::newRow("data3") << QSize(6,4) << QSize(4,6) << QSize(6,6);
}
@@ -217,7 +217,7 @@ void tst_QSize::boundedTo_data()
QTest::newRow("data0") << QSize(10,12) << QSize(6,4) << QSize(6,4);
QTest::newRow("data1") << QSize(0,0) << QSize(6,4) << QSize(0,0);
// This should pick the lowest of w,h components independently of each other,
- // thus the result dont have to be equal to neither input1 nor input2.
+ // thus the results don't have to be equal to neither input1 nor input2.
QTest::newRow("data3") << QSize(6,4) << QSize(4,6) << QSize(4,4);
}