diff options
author | Sergio Ahumada <sergio.ahumada@nokia.com> | 2011-06-30 21:44:57 (GMT) |
---|---|---|
committer | Sergio Ahumada <sergio.ahumada@nokia.com> | 2011-06-30 21:44:57 (GMT) |
commit | 0a9652c93170ab9520869e9e231eba1834b47abc (patch) | |
tree | afcf901cae65424a06d21c389e4bde7046b9a693 /tests/auto/qtextformat | |
parent | d795e50a2bf89209b124ec29fe7dd883208224ea (diff) | |
download | Qt-0a9652c93170ab9520869e9e231eba1834b47abc.zip Qt-0a9652c93170ab9520869e9e231eba1834b47abc.tar.gz Qt-0a9652c93170ab9520869e9e231eba1834b47abc.tar.bz2 |
Doc: Fixing typo
Diffstat (limited to 'tests/auto/qtextformat')
-rw-r--r-- | tests/auto/qtextformat/tst_qtextformat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qtextformat/tst_qtextformat.cpp b/tests/auto/qtextformat/tst_qtextformat.cpp index d70df6b..b235b11 100644 --- a/tests/auto/qtextformat/tst_qtextformat.cpp +++ b/tests/auto/qtextformat/tst_qtextformat.cpp @@ -226,7 +226,7 @@ void tst_QTextFormat::resolveFont() QVERIFY(fmt.font().underline()); QVERIFY(!fmt.hasProperty(QTextFormat::FontUnderline)); - // verify that deleting a non-existant property does not affect the font resolving + // verify that deleting a non-existent property does not affect the font resolving QVERIFY(!fmt.hasProperty(QTextFormat::BackgroundBrush)); fmt.clearProperty(QTextFormat::BackgroundBrush); @@ -235,7 +235,7 @@ void tst_QTextFormat::resolveFont() QVERIFY(!fmt.hasProperty(QTextFormat::FontUnderline)); QVERIFY(fmt.font().underline()); - // verify that deleting an existant but font _unrelated_ property does not affect the font resolving + // verify that deleting an existent but font _unrelated_ property does not affect the font resolving QVERIFY(fmt.hasProperty(QTextFormat::ForegroundBrush)); fmt.clearProperty(QTextFormat::ForegroundBrush); |