aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/memory
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-09-08 14:58:55 +0200
committerLars Knoll <lars.knoll@theqtcompany.com>2015-09-25 08:39:20 +0000
commita8ccf32793c849ee7bacc085dff1c8a8abc49735 (patch)
tree87478fa1444ef99be24c078d50318da354f3ef26 /src/qml/memory
parentc72f973a35c0ba0a70a00f5c4d6bed8b0edbc21d (diff)
Cosmetic improvements to marking of objects during GC
Change-Id: I79a7093c7086ea7f34252f097f18fe7c835053aa Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/memory')
-rw-r--r--src/qml/memory/qv4mm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/memory/qv4mm.cpp b/src/qml/memory/qv4mm.cpp
index c85aa8c2f8..85f03b17c8 100644
--- a/src/qml/memory/qv4mm.cpp
+++ b/src/qml/memory/qv4mm.cpp
@@ -361,10 +361,10 @@ void MemoryManager::mark()
engine->markObjects();
- m_persistentValues->mark(engine);
-
collectFromJSStack();
+ m_persistentValues->mark(engine);
+
// Preserve QObject ownership rules within JavaScript: A parent with c++ ownership
// keeps all of its children alive in JavaScript.