diff options
author | Eduardo M. Fleury <eduardo.fleury@openbossa.org> | 2009-11-06 02:19:29 (GMT) |
---|---|---|
committer | Eduardo M. Fleury <eduardo.fleury@openbossa.org> | 2009-11-27 19:19:08 (GMT) |
commit | 89f83f99242d67b5079f16c8db0960fc71bda3f0 (patch) | |
tree | 94d10dc80f1781d7e6f7d7bc44cc57d8f53727dd /tests/auto/qgraphicsanchorlayout | |
parent | 666576b39da04f4185036d9eee1b8edeae10ccf7 (diff) | |
download | Qt-89f83f99242d67b5079f16c8db0960fc71bda3f0.zip Qt-89f83f99242d67b5079f16c8db0960fc71bda3f0.tar.gz Qt-89f83f99242d67b5079f16c8db0960fc71bda3f0.tar.bz2 |
QGAL: Enable out-of-order sequential simplification
Modify the simplification code to allow the creation of out-of-order
sequential anchors.
Basically the "changedDirection" end-of-sequence condition was removed,
also note that createSequence no longer bothers to revert the direction
of anchors if the order it receives is not standard.
Removing expect-fail clause from test since now we pass :-)
Signed-off-by: Eduardo M. Fleury <eduardo.fleury@openbossa.org>
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
Diffstat (limited to 'tests/auto/qgraphicsanchorlayout')
-rw-r--r-- | tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp b/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp index d566498..6e78522 100644 --- a/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp +++ b/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp @@ -1806,7 +1806,6 @@ void tst_QGraphicsAnchorLayout::simplificationVsOrder() l->effectiveSizeHint(Qt::MinimumSize); if (hasSimplification) { - QEXPECT_FAIL("", "Sequential anchors cannot handle children of opposite directions", Continue); QCOMPARE(usedSimplex(l, Qt::Horizontal), false); QCOMPARE(usedSimplex(l, Qt::Vertical), false); } |