mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Optimize completion model by only splitting on normal spaces
This commit is contained in:
parent
18ff58edb3
commit
dfe2495d9a
1 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ CompletionProxyModel::CompletionProxyModel(QAbstractItemModel *model,
|
||||||
, max_completions_(max_completions)
|
, max_completions_(max_completions)
|
||||||
{
|
{
|
||||||
setSourceModel(model);
|
setSourceModel(model);
|
||||||
QRegularExpression splitPoints("\\s+|-");
|
QChar splitPoints(' ');
|
||||||
|
|
||||||
// insert all the full texts
|
// insert all the full texts
|
||||||
for (int i = 0; i < sourceModel()->rowCount(); i++) {
|
for (int i = 0; i < sourceModel()->rowCount(); i++) {
|
||||||
|
@ -48,7 +48,7 @@ CompletionProxyModel::CompletionProxyModel(QAbstractItemModel *model,
|
||||||
.toString()
|
.toString()
|
||||||
.toLower();
|
.toLower();
|
||||||
|
|
||||||
for (const auto &e : string1.split(splitPoints)) {
|
for (const auto &e : string1.splitRef(splitPoints)) {
|
||||||
if (!e.isEmpty()) // NOTE(Nico): Use Qt::SkipEmptyParts in Qt 5.14
|
if (!e.isEmpty()) // NOTE(Nico): Use Qt::SkipEmptyParts in Qt 5.14
|
||||||
trie_.insert(e.toUcs4(), i);
|
trie_.insert(e.toUcs4(), i);
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ CompletionProxyModel::CompletionProxyModel(QAbstractItemModel *model,
|
||||||
.toLower();
|
.toLower();
|
||||||
|
|
||||||
if (!string2.isEmpty()) {
|
if (!string2.isEmpty()) {
|
||||||
for (const auto &e : string2.split(splitPoints)) {
|
for (const auto &e : string2.splitRef(splitPoints)) {
|
||||||
if (!e.isEmpty()) // NOTE(Nico): Use Qt::SkipEmptyParts in Qt 5.14
|
if (!e.isEmpty()) // NOTE(Nico): Use Qt::SkipEmptyParts in Qt 5.14
|
||||||
trie_.insert(e.toUcs4(), i);
|
trie_.insert(e.toUcs4(), i);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue