diff options
author | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2009-07-01 12:47:02 (GMT) |
---|---|---|
committer | Eduardo M. Fleury <eduardo.fleury@openbossa.org> | 2009-07-22 18:04:42 (GMT) |
commit | a2a3b7e1db732f24fba46f779f525d3624879676 (patch) | |
tree | 065ec1fb0f6dc0b3c734862f637c88a73967f396 /src | |
parent | 1ead82df833086eede2e2959705e1d9e8c15c389 (diff) | |
download | Qt-a2a3b7e1db732f24fba46f779f525d3624879676.zip Qt-a2a3b7e1db732f24fba46f779f525d3624879676.tar.gz Qt-a2a3b7e1db732f24fba46f779f525d3624879676.tar.bz2 |
The simplification makes the parallel autotest fail. Disable it for now.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/graphicsview/qgraphicsanchorlayout_p.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/graphicsview/qgraphicsanchorlayout_p.cpp b/src/gui/graphicsview/qgraphicsanchorlayout_p.cpp index 5963d16..0bf974f 100644 --- a/src/gui/graphicsview/qgraphicsanchorlayout_p.cpp +++ b/src/gui/graphicsview/qgraphicsanchorlayout_p.cpp @@ -798,11 +798,11 @@ void QGraphicsAnchorLayoutPrivate::calculateGraphs() if (!calculateGraphCacheDirty) return; - simplifyGraph(Horizontal); - simplifyGraph(Vertical); + //simplifyGraph(Horizontal); + //simplifyGraph(Vertical); //q->dumpGraph(); - restoreSimplifiedGraph(Horizontal); // should not be here, but currently crashes if not - restoreSimplifiedGraph(Vertical); // should not be here, but currently crashes if not + //restoreSimplifiedGraph(Horizontal); // should not be here, but currently crashes if not + //restoreSimplifiedGraph(Vertical); // should not be here, but currently crashes if not calculateGraphs(Horizontal); |