aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-02-13 15:23:13 +0100
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-24 15:20:28 +0000
commit3dd0a2328cde175dbdcbb8af94b5984f7d84796f (patch)
tree6a82e78909ac49ebd3de3ebdfd150fa0851866af /src/qml/jsruntime/qv4context_p.h
parent3830ad49cbab8ecacc17d7be81374e5b1727a21c (diff)
More cleanups in qv4value_p.h
Change-Id: Ie48dc8f95daa4738e690902b5d33010afa7b974f Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.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 cf229d4221..2cff65b3d9 100644
--- a/src/qml/jsruntime/qv4context_p.h
+++ b/src/qml/jsruntime/qv4context_p.h
@@ -117,7 +117,7 @@ struct GlobalContext : ExecutionContext {
struct CatchContext : ExecutionContext {
CatchContext(ExecutionEngine *engine, QV4::String *exceptionVarName, const Value &exceptionValue);
- StringValue exceptionVarName;
+ Pointer<String> exceptionVarName;
Value exceptionValue;
};