aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/nodes/tst_nodestest.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2011-07-01 11:30:00 +1000
committerAaron Kennedy <aaron.kennedy@nokia.com>2011-07-01 11:30:00 +1000
commitd09d7aec4c3f4db0c4d6a09c33aff863551a8369 (patch)
treec6252697e54e186f075e9ae7b3d55fb10382648a /tests/auto/declarative/nodes/tst_nodestest.cpp
parente2c67953cea0ba8ceec880d124c9e9c97ec55207 (diff)
parent3296449d5cd9491b56914a23a78d2f78982a6856 (diff)
Merge branch 'master' into v8-clean
Conflicts: src/declarative/qml/qdeclarativevme.cpp Change-Id: I0bbc12c06d40c70433730cb33c4e9b461520263f
Diffstat (limited to 'tests/auto/declarative/nodes/tst_nodestest.cpp')
-rw-r--r--tests/auto/declarative/nodes/tst_nodestest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/nodes/tst_nodestest.cpp b/tests/auto/declarative/nodes/tst_nodestest.cpp
index acfc02c844..b9f276cee9 100644
--- a/tests/auto/declarative/nodes/tst_nodestest.cpp
+++ b/tests/auto/declarative/nodes/tst_nodestest.cpp
@@ -196,14 +196,14 @@ public:
if (renderer->rootNode()->parent()) {
// Mark the root dirty to build a clean state from the root and down
- renderer->rootNode()->markDirty(QSGNode::DirtyAll);
+ renderer->rootNode()->markDirty(QSGNode::DirtyForceUpdate);
}
renderer->renderScene();
if (renderer->rootNode()->parent()) {
// Mark the parent of the root dirty to force the root and down to be updated.
- renderer->rootNode()->parent()->markDirty(QSGNode::DirtyAll);
+ renderer->rootNode()->parent()->markDirty(QSGNode::DirtyForceUpdate);
}
}