diff options
author | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2009-11-19 09:40:11 (GMT) |
---|---|---|
committer | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2009-11-19 09:40:11 (GMT) |
commit | e8d2c7b0b54806ff4e2127e7ddf3c7800bb0a429 (patch) | |
tree | 4f0f11a6655dd883ee133f95fe5158fb71c2eed8 /tests/auto | |
parent | d2c337d33d02f91b02dfb6f378a3cd42a33d01cc (diff) | |
parent | ea3ba57cf80954ca11e1c446181f6cee3656ce3e (diff) | |
download | Qt-e8d2c7b0b54806ff4e2127e7ddf3c7800bb0a429.zip Qt-e8d2c7b0b54806ff4e2127e7ddf3c7800bb0a429.tar.gz Qt-e8d2c7b0b54806ff4e2127e7ddf3c7800bb0a429.tar.bz2 |
Merge branch '4.6' of git@scm.dev.troll.no:qt/oslo-staging-2 into 4.6
Diffstat (limited to 'tests/auto')
-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); |