summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2022-09-30 00:24:43 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2022-09-30 00:24:43 -0400
commit08aa383a62faf230d355780f567d96b924118cc0 (patch)
tree07b4afc401322a16985031334fe92f205c8110d8 /src
parentVarious grammar fixes (mostly removing commas) (diff)
downloadnheko-08aa383a62faf230d355780f567d96b924118cc0.tar.xz
Remove unnecessary emit
Diffstat (limited to 'src')
-rw-r--r--src/dialogs/ReCaptcha.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dialogs/ReCaptcha.cpp b/src/dialogs/ReCaptcha.cpp

index 220596b7..95a1f85f 100644 --- a/src/dialogs/ReCaptcha.cpp +++ b/src/dialogs/ReCaptcha.cpp
@@ -66,10 +66,10 @@ ReCaptcha::ReCaptcha(const QString &session, QWidget *parent) connect(confirmBtn_, &QPushButton::clicked, this, [this]() { emit confirmation(); - emit close(); + close(); }); connect(cancelBtn_, &QPushButton::clicked, this, [this]() { emit cancel(); - emit close(); + close(); }); }