summary refs log tree commit diff
path: root/src/CompletionProxyModel.cpp
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2021-03-04 19:11:08 -0500
committerJoseph Donofry <joedonofry@gmail.com>2021-03-04 19:11:08 -0500
commit4b12b53133d91794ae29a0b96d56948bca8e0d1b (patch)
treef74ede8217b9e82eda61a3bb2a8133afeb1c7d32 /src/CompletionProxyModel.cpp
parentProperly format matrix errors in spdlog statements (diff)
downloadnheko-4b12b53133d91794ae29a0b96d56948bca8e0d1b.tar.xz
Fix linting
Diffstat (limited to '')
-rw-r--r--src/CompletionProxyModel.cpp21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/CompletionProxyModel.cpp b/src/CompletionProxyModel.cpp

index fa5b3c2d..95c057f0 100644 --- a/src/CompletionProxyModel.cpp +++ b/src/CompletionProxyModel.cpp
@@ -41,17 +41,16 @@ CompletionProxyModel::CompletionProxyModel(QAbstractItemModel *model, QObject *p } } - connect( - this, - &CompletionProxyModel::newSearchString, - this, - [this](QString s) { - s.remove(":"); - s.remove("@"); - searchString = s.toLower(); - invalidate(); - }, - Qt::QueuedConnection); + connect(this, + &CompletionProxyModel::newSearchString, + this, + [this](QString s) { + s.remove(":"); + s.remove("@"); + searchString = s.toLower(); + invalidate(); + }, + Qt::QueuedConnection); } void