summary refs log tree commit diff
path: root/src/TextInputWidget.cpp
diff options
context:
space:
mode:
authorredsky17 <joedonofry@gmail.com>2019-06-11 22:34:15 -0400
committerredsky17 <joedonofry@gmail.com>2019-06-11 22:34:15 -0400
commit71c1cbcfd134649c5ab7c8be403581a1fed6440d (patch)
tree093237e0d3a5b59a62a0d043e97f291a31bce6a7 /src/TextInputWidget.cpp
parentFix linting issue (diff)
downloadnheko-71c1cbcfd134649c5ab7c8be403581a1fed6440d.tar.xz
Fix lambda capture and lint issues
Diffstat (limited to '')
-rw-r--r--src/TextInputWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TextInputWidget.cpp b/src/TextInputWidget.cpp

index b4251a0e..7971ab43 100644 --- a/src/TextInputWidget.cpp +++ b/src/TextInputWidget.cpp
@@ -76,7 +76,7 @@ FilteredTextEdit::FilteredTextEdit(QWidget *parent) &FilteredTextEdit::uploadData); connect(this, &FilteredTextEdit::resultsRetrieved, this, &FilteredTextEdit::showResults); - connect(&replyPopup_, &ReplyPopup::userSelected, this, [this](const QString &text) { + connect(&replyPopup_, &ReplyPopup::userSelected, this, [](const QString &text) { // TODO: Show user avatar window. nhlog::ui()->info("User selected: " + text.toStdString()); });