Fix trivial Qt6 deprecations (QString::count, QColor::setNamedColor)

QString::count() (no-arg) is deprecated -> size(); QColor::setNamedColor()
is deprecated -> the QColor(QString) constructor. Both replacements are
non-deprecated on Qt5 too. Clears 2 -Wdeprecated-declarations warnings.
This commit is contained in:
Dieter Mayer
2026-07-12 21:54:13 +02:00
parent c3392bf025
commit f57c921b78
2 changed files with 2 additions and 2 deletions
@@ -830,7 +830,7 @@ void ElementsCollectionWidget::search()
}
//start the search when text have at least 3 letters.
if (text.count() < 3) {
if (text.size() < 3) {
return;
}