diff options
author | Simon Hausmann <[email protected]> | 2014-01-30 13:31:14 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2014-02-03 14:37:53 +0100 |
commit | d5f5083f1f6ea78f7b8527a1352569fad2ab643a (patch) | |
tree | e5b9c7ec8235c5cd9b176510125f86b24928c6e0 /src/qml/compiler/qv4compileddata_p.h | |
parent | a52df12dcdce81af690cff3275eb195a282bae91 (diff) |
[new compiler] Add support for signal handler objects
Change-Id: I644dcea86fa886a6a2dc7cd230ad6942d165c4c5
Reviewed-by: Lars Knoll <[email protected]>
Diffstat (limited to 'src/qml/compiler/qv4compileddata_p.h')
-rw-r--r-- | src/qml/compiler/qv4compileddata_p.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qml/compiler/qv4compileddata_p.h b/src/qml/compiler/qv4compileddata_p.h index c953f6413d..e6c37a826f 100644 --- a/src/qml/compiler/qv4compileddata_p.h +++ b/src/qml/compiler/qv4compileddata_p.h @@ -294,8 +294,9 @@ struct Q_QML_EXPORT Binding enum Flags { IsSignalHandlerExpression = 0x1, - IsOnAssignment = 0x2, - InitializerForReadOnlyDeclaration = 0x4 + IsSignalHandlerObject = 0x2, + IsOnAssignment = 0x4, + InitializerForReadOnlyDeclaration = 0x8 }; quint32 flags : 16; |