aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4object_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-09-18 11:00:38 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-22 01:06:20 +0200
commit50624234f2c0b6d3b0985edb8ff0b6aad5cad761 (patch)
tree2852c8917788d870100278d1cdc0129b94c5b599 /src/qml/jsruntime/qv4object_p.h
parent8b3623ee7b707e1b26ad48bdbf7816b95d9e0e24 (diff)
Add a Safe<T> class and start using it
The class denotes objects that are stored safely in areas controlled by the GC. These we can convert fast to a StringRef etc. Change-Id: I6b154eccaefddc42d4fafca55b7ee9e77179830c Reviewed-by: Simon Hausmann <simon.hausmann@digia.com> Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4object_p.h')
-rw-r--r--src/qml/jsruntime/qv4object_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4object_p.h b/src/qml/jsruntime/qv4object_p.h
index c0676667a4..b21bd7bec6 100644
--- a/src/qml/jsruntime/qv4object_p.h
+++ b/src/qml/jsruntime/qv4object_p.h
@@ -174,7 +174,7 @@ struct Q_QML_EXPORT Object: Managed {
void defineReadonlyProperty(ExecutionEngine *engine, const QString &name, Value value);
void defineReadonlyProperty(String *name, Value value);
- Property *insertMember(String *s, PropertyAttributes attributes);
+ Property *insertMember(const StringRef s, PropertyAttributes attributes);
inline ExecutionEngine *engine() const { return internalClass->engine; }