From 6a2073f5f2212a939e911bc791cdc3473a427304 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Wed, 26 Mar 2025 16:21:21 +0100 Subject: [PATCH] Fix qds/4.7 build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Breakage was caused by upstream refactoring. Change-Id: I7f3609535a2d7d3005d3146bc66c118cce916666 Reviewed-by: Henning Gründl --- src/plugins/qmldesigner/libs/designsystem/dsthememanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qmldesigner/libs/designsystem/dsthememanager.cpp b/src/plugins/qmldesigner/libs/designsystem/dsthememanager.cpp index 375fa1d4c8f..6d898743a2c 100644 --- a/src/plugins/qmldesigner/libs/designsystem/dsthememanager.cpp +++ b/src/plugins/qmldesigner/libs/designsystem/dsthememanager.cpp @@ -362,8 +362,8 @@ std::vector DSThemeManager::boundProperties() const std::vector bindings; for (auto &[gt, group] : m_groups) { for (auto &[id, _] : m_themes) { - for (const auto &propName : group.propertyNames()) { - if (auto p = group.propertyValue(id, propName)) { + for (const auto &propName : group->propertyNames()) { + if (auto p = group->propertyValue(id, propName)) { if (p->isBinding) bindings.push_back({propName, id, gt, p->value.toString()}); }