diff options
author | Ulf Hermann <[email protected]> | 2022-05-05 12:17:11 +0200 |
---|---|---|
committer | Ulf Hermann <[email protected]> | 2022-05-11 12:56:21 +0200 |
commit | 745cce4391a8b6255605cb304d8bc14b11168423 (patch) | |
tree | b4b73c3530109442070eb9cb8eeaaedbe6406042 /src/qmltest/quicktest.cpp | |
parent | 2642058df8429cd593d0c7adf45a818a42fc0d88 (diff) |
QML: Port QV4::CompiledData::Object to new special integer bitfield
Pick-to: 5.15 6.2 6.3
Task-number: QTBUG-99545
Change-Id: Ia57a16313e883a8d4dab15c971181440ed1d2214
Reviewed-by: Fabian Kosmale <[email protected]>
Reviewed-by: Sami Shalayel <[email protected]>
Diffstat (limited to 'src/qmltest/quicktest.cpp')
-rw-r--r-- | src/qmltest/quicktest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmltest/quicktest.cpp b/src/qmltest/quicktest.cpp index da631cb5ec..d8689124c2 100644 --- a/src/qmltest/quicktest.cpp +++ b/src/qmltest/quicktest.cpp @@ -302,7 +302,7 @@ private: if (!object) // Start at root of compilation unit if not enumerating a specific child object = compilationUnit->objectAt(0); - if (object->flags & Object::IsInlineComponentRoot) + if (object->hasFlag(Object::IsInlineComponentRoot)) return result; if (const auto superTypeUnit = compilationUnit->resolvedTypes.value( |