aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v8/qjsengine.cpp
diff options
context:
space:
mode:
authorKent Hansen <kent.hansen@nokia.com>2012-05-22 15:13:08 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-24 09:41:15 +0200
commitafc0d1f0454858aefb342353afb4df4b27863382 (patch)
treed61d2b6a0a725fc151556159c2aec273814a7baa /src/qml/qml/v8/qjsengine.cpp
parent09e624fa6b00855f5daa682fe8b9444e0e170d7f (diff)
Remove QQmlEngine::collectGarbage() overload
QQmlEngine inherits from QJSEngine, which has a collectGarbage() function that does exactly the same. Also remove doc references to non-existing function reportAdditionalMemoryCost(). Change-Id: Iff12d2cf940f3afcd88967eb9a841c2f6082ca37 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@nokia.com>
Diffstat (limited to 'src/qml/qml/v8/qjsengine.cpp')
-rw-r--r--src/qml/qml/v8/qjsengine.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/qml/qml/v8/qjsengine.cpp b/src/qml/qml/v8/qjsengine.cpp
index d2c8067839..af47877c35 100644
--- a/src/qml/qml/v8/qjsengine.cpp
+++ b/src/qml/qml/v8/qjsengine.cpp
@@ -206,8 +206,6 @@ QJSEngine::~QJSEngine()
when the QJSEngine decides that it's wise to do so (i.e. when a certain number of new objects
have been created). However, you can call this function to explicitly request that garbage
collection should be performed as soon as possible.
-
- \sa reportAdditionalMemoryCost()
*/
void QJSEngine::collectGarbage()
{
@@ -296,7 +294,7 @@ QJSValue QJSEngine::newArray(uint length)
wrapper object (either by script code or C++) will result in a
script exception.
- \sa QJSValue::toQObject(), reportAdditionalMemoryCost()
+ \sa QJSValue::toQObject()
*/
QJSValue QJSEngine::newQObject(QObject *object)
{