aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2014-11-03 02:29:08 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2014-11-08 16:39:58 +0100
commitaeb7d3ebbbc5ac16bf7b2f08874f13912b683007 (patch)
treed3d154b2523a81ac74ff3e7141dadf69adaa0319 /src/qml/jsruntime/qv4context_p.h
parenta7ffd048cc8ab49fdf13fa2a943b6f134ce157e8 (diff)
Move Data for String into the Heap namespace
Change-Id: Iefa231106b77db6d4c9d4ded2b028d21eb94ab03 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4context_p.h')
-rw-r--r--src/qml/jsruntime/qv4context_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4context_p.h b/src/qml/jsruntime/qv4context_p.h
index c7066d8472..281f80bef6 100644
--- a/src/qml/jsruntime/qv4context_p.h
+++ b/src/qml/jsruntime/qv4context_p.h
@@ -123,7 +123,7 @@ struct GlobalContext : ExecutionContext {
};
struct CatchContext : ExecutionContext {
- CatchContext(ExecutionEngine *engine, String *exceptionVarName, const ValueRef exceptionValue);
+ CatchContext(ExecutionEngine *engine, QV4::String *exceptionVarName, const ValueRef exceptionValue);
StringValue exceptionVarName;
Value exceptionValue;
};