summary refs log tree commit diff
path: root/src/CompletionProxyModel.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-03-05 15:26:07 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2021-03-05 15:26:07 +0100
commit1be42045eea0ac01a59591c447665957ab95e46d (patch)
tree21e5e35e7a808d3fd30b33c857a7b1b95698ae39 /src/CompletionProxyModel.cpp
parentFix cplusplus macro on windows (diff)
downloadnheko-1be42045eea0ac01a59591c447665957ab95e46d.tar.xz
fix linting
Diffstat (limited to '')
-rw-r--r--src/CompletionProxyModel.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/CompletionProxyModel.cpp b/src/CompletionProxyModel.cpp

index 34625e76..44a14911 100644 --- a/src/CompletionProxyModel.cpp +++ b/src/CompletionProxyModel.cpp
@@ -45,16 +45,17 @@ 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