diff options
author | axis <qt-info@nokia.com> | 2009-11-19 09:37:36 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-11-19 09:37:36 (GMT) |
commit | ea3ba57cf80954ca11e1c446181f6cee3656ce3e (patch) | |
tree | 4383b5a2040026df9285c0c748bd0544dbfb2a4e /tests | |
parent | 48a65c01f219afa1aa49f341083422c718c088ca (diff) | |
parent | 6340cf327515252ffbb21e98486e9abfc713149e (diff) | |
download | Qt-ea3ba57cf80954ca11e1c446181f6cee3656ce3e.zip Qt-ea3ba57cf80954ca11e1c446181f6cee3656ce3e.tar.gz Qt-ea3ba57cf80954ca11e1c446181f6cee3656ce3e.tar.bz2 |
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt-s60-public into 4.6-staging2
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qtextlayout/tst_qtextlayout.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/qtextlayout/tst_qtextlayout.cpp b/tests/auto/qtextlayout/tst_qtextlayout.cpp index 7c3f4f2..1df26b8 100644 --- a/tests/auto/qtextlayout/tst_qtextlayout.cpp +++ b/tests/auto/qtextlayout/tst_qtextlayout.cpp @@ -1115,14 +1115,14 @@ void tst_QTextLayout::testTabDPIScale() QTextOption option = layout.textOption(); QList<QTextOption::Tab> tabs; QTextOption::Tab tab; - tab.position = 200; + tab.position = 300; tabs.append(tab); - tab.position = 400; + tab.position = 600; tab.type = QTextOption::RightTab; tabs.append(tab); - tab.position = 600; + tab.position = 800; tab.type = QTextOption::CenterTab; tabs.append(tab); option.setTabs(tabs); |