aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKim Motoyoshi Kalland <kim.kalland@nokia.com>2011-06-23 14:13:24 +0200
committerKim Motoyoshi Kalland <kim.kalland@nokia.com>2011-06-23 14:53:32 +0200
commita9853d2ffe177bf98eb7610b58bb1bbb44743510 (patch)
tree7923f9359306bd54c14dde5673d33fce154ba6ed /tests
parent098b7fb0ac84dbe65a8861cce76e036f0b9198d6 (diff)
Updated tst_nodestest to use the DirtyForceUpdate flag.
Changed test to use DirtyForceUpdate instead of DirtyAll, and removed DirtyRenderOrder and DirtyAll enums which should not be used.
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/declarative/node/tst_nodestest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/node/tst_nodestest.cpp b/tests/auto/declarative/node/tst_nodestest.cpp
index a1b0a6ac91..fc159b98e9 100644
--- a/tests/auto/declarative/node/tst_nodestest.cpp
+++ b/tests/auto/declarative/node/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);
}
}