From 524f45f56685d2931b247f76281d5065e450d186 Mon Sep 17 00:00:00 2001 From: Samuel Ghinet Date: Sun, 7 May 2023 09:34:59 +0300 Subject: QmlDesigner: Fix crash at filtering the Style Model in QDS new dialog Task-number: QDS-9731 Change-Id: Iac64d109fa125f67ab3e713e07ebbc3e519d5ac5 Reviewed-by: Tim Jenssen --- src/plugins/studiowelcome/stylemodel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/studiowelcome/stylemodel.cpp b/src/plugins/studiowelcome/stylemodel.cpp index d93fc5fded..79669ff2a5 100644 --- a/src/plugins/studiowelcome/stylemodel.cpp +++ b/src/plugins/studiowelcome/stylemodel.cpp @@ -63,6 +63,8 @@ int StyleModel::filteredIndex(int actualIndex) if (actualIndex < 0) return actualIndex; + QTC_ASSERT(actualIndex < m_items.size(), return -1); + QStandardItem *item = m_items.at(actualIndex); // TODO: perhaps should add this kind of find to utils/algorithm.h auto it = std::find(std::cbegin(m_filteredItems), std::cend(m_filteredItems), item); -- cgit v1.2.1