diff options
author | Simon Hausmann <simon.hausmann@digia.com> | 2013-10-01 16:19:28 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-10-03 09:24:41 +0200 |
commit | 7d9780b6308e15dcd4adcb65d7b516666c285f54 (patch) | |
tree | 94c598d4aba187293dace67011dbcaf8347ef8b7 /src/qml/jsruntime/qv4functionobject.cpp | |
parent | 8abf7f5876a48c0879bce628597533c7b6eca9a0 (diff) | |
download | qtdeclarative-7d9780b6308e15dcd4adcb65d7b516666c285f54.tar.gz |
Cleanup exception handling
The code in the Exception class operates entirely on the engine's data,
so move it into ExecutionEngine instead. This eliminates the need for
a QV4::Exception class and catches and old code that tries to still do
catch (Exception &) instead of catch (...)
Change-Id: Ie608bec6af652038aca6c9423c225a4d7eb13b39
Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4functionobject.cpp')
-rw-r--r-- | src/qml/jsruntime/qv4functionobject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4functionobject.cpp b/src/qml/jsruntime/qv4functionobject.cpp index 305efba1d6..058c71f9f3 100644 --- a/src/qml/jsruntime/qv4functionobject.cpp +++ b/src/qml/jsruntime/qv4functionobject.cpp @@ -46,7 +46,7 @@ #include "qv4stringobject_p.h" #include "qv4function_p.h" #include "qv4mm_p.h" -#include "qv4exception_p.h" + #include "qv4arrayobject_p.h" #include "qv4scopedvalue_p.h" |