aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4errorobject_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2014-11-10 16:21:38 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2014-11-12 12:13:42 +0100
commit60f3c23f524eaed795dd4ce58722cdf923ba6a51 (patch)
tree7636be29b0297b865baa01a3575b3ce330e4a85d /src/qml/jsruntime/qv4errorobject_p.h
parent3e84f76bbc7a3fe0a8428be3cd6340401065ad23 (diff)
Use Heap objects inside argumentsobject, arraybuffer and errorobject
Change-Id: Iad76a1351dcca1fd46303a1072540c23a8ef6722 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4errorobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4errorobject_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4errorobject_p.h b/src/qml/jsruntime/qv4errorobject_p.h
index 71dcecedf8..7a18447f4b 100644
--- a/src/qml/jsruntime/qv4errorobject_p.h
+++ b/src/qml/jsruntime/qv4errorobject_p.h
@@ -60,7 +60,7 @@ struct ErrorObject : Object {
ErrorObject(InternalClass *ic, const QString &message, ErrorType t = Error);
ErrorObject(InternalClass *ic, const QString &message, const QString &fileName, int line, int column, ErrorType t = Error);
StackTrace stackTrace;
- QV4::String *stack;
+ String *stack;
};
struct EvalErrorObject : ErrorObject {