1
0
Fork 0
forked from len0rd/rockbox

themeeditor: Get rid of another pile of deprecation warnings

Change-Id: Ifc6274d7f2f0de85db7b652f479ba7f9b7ef86bb
This commit is contained in:
Solomon Peachy 2024-12-04 15:45:36 -05:00
parent a565734e47
commit c24862ab64
5 changed files with 17 additions and 18 deletions

View file

@ -50,7 +50,7 @@ SyntaxCompleter::SyntaxCompleter(CodeEditor *parent) :
QStringList tag;
tag.append(split[0].trimmed());
tag.append(split[1].trimmed());
tags.insertMulti(split[0].trimmed().toLower(), tag);
tags.insert(split[0].trimmed().toLower(), tag);
}
filter("");