diff options
author | Ulf Hermann <[email protected]> | 2022-03-10 12:09:00 +0100 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2022-03-14 16:44:35 +0100 |
commit | 9de2b11a7033a1969156277bafa848b5c178baa1 (patch) | |
tree | e9d349e5165350b50065663e3b9efadd94738cb8 /src/qml/jsruntime/qv4executablecompilationunit_p.h | |
parent | e5246cafffb93f69a49c133210390c253fcb71f2 (diff) |
Make most QQmlPropertyData const
You really should not mess with that after creating the property cache.
Change-Id: I070200772475bb67f539dbbd85a298020b14ca79
Reviewed-by: Fabian Kosmale <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4executablecompilationunit_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4executablecompilationunit_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4executablecompilationunit_p.h b/src/qml/jsruntime/qv4executablecompilationunit_p.h index 5c73b40121..673a181eec 100644 --- a/src/qml/jsruntime/qv4executablecompilationunit_p.h +++ b/src/qml/jsruntime/qv4executablecompilationunit_p.h @@ -89,7 +89,7 @@ struct InlineComponentData { namespace QV4 { // index is per-object binding index -typedef QVector<QQmlPropertyData*> BindingPropertyData; +typedef QVector<const QQmlPropertyData *> BindingPropertyData; class CompilationUnitMapper; class ResolvedTypeReference; |