summary refs log tree commit diff
path: root/src/dialogs/ReCaptcha.cpp
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2022-10-03 21:37:01 +0000
committerGitHub <noreply@github.com>2022-10-03 21:37:01 +0000
commit5e9eb845ab2f7f84c440a60666999655a084038f (patch)
treef6d576234859beedb55194a8496a13f3d526942e /src/dialogs/ReCaptcha.cpp
parentFixed a crash in member list loading (#1199) (diff)
parentRemove unnecessary emit (diff)
downloadnheko-5e9eb845ab2f7f84c440a60666999655a084038f.tar.xz
Merge pull request #1202 from Nheko-Reborn/grammar
Grammar
Diffstat (limited to 'src/dialogs/ReCaptcha.cpp')
-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(); }); }