From a1151929fffc765e128d72d170342020b34dd0b3 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 9 May 2012 21:38:12 +0200 Subject: [PATCH] Explicitly enable exceptions for QtQml QtQml uses a try/catch statement in one place to safeguard QList resizing. Since this can be called from the JS side, it needs to be safeguarded. Long term we should find a different way of handling this then using exceptions in one place. Change-Id: I51864d1b7ab468dd190c48e7a47c852ce35d40f1 Reviewed-by: Thiago Macieira --- src/qml/qml.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/qml.pro b/src/qml/qml.pro index acafb9f..283732a 100644 --- a/src/qml/qml.pro +++ b/src/qml/qml.pro @@ -3,7 +3,7 @@ load(qt_module) TARGET = QtQml QPRO_PWD = $$PWD -CONFIG += module +CONFIG += module exceptions MODULE_PRI += ../../modules/qt_qml.pri QT = core-private network v8-private -- 2.7.4