Qt 6.9 status
* Qt 6.9.1 preparations are ongoing
* Branching from '6.9. to '6.9.1' is done
* All needed fixes should be in place and dependency update round is
ongoing
* The target is to create release packages when dependency update round
is ready
* The target i
On 20/05/2025 10:26, Richard Gustavsen wrote:
Would it be more convenient to put the range API directly on QRangeModel
instead? E.g:
QRangeModel model({1, 2, 3, 4, 5});
listView.setModel(&model);
model.erase(model.begin());
model[0] = x;
model.push_back(y);
Yes, this is an important question
Approver rights have been granted. Congratulations
--
Alex
From: Development on behalf of Matthias
Rauter via Development
Sent: Wednesday, 9 April 2025 13:18
To: development@qt-project.org
Subject: [Development] Nominating Øystein Heskestad for appro
>
> I would like to come up with some C++ template class that gives type-safe
> access to the model while also respecting QAIM requirements, but doesn’t
> require any usage of QModelIndex, role values etc. I suspect that “Adaptor”
> will be a good term to use for such a class. Something along t