mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Remove unnecessary emit
This commit is contained in:
parent
df834ffc48
commit
08aa383a62
1 changed files with 2 additions and 2 deletions
|
@ -66,10 +66,10 @@ ReCaptcha::ReCaptcha(const QString &session, QWidget *parent)
|
||||||
|
|
||||||
connect(confirmBtn_, &QPushButton::clicked, this, [this]() {
|
connect(confirmBtn_, &QPushButton::clicked, this, [this]() {
|
||||||
emit confirmation();
|
emit confirmation();
|
||||||
emit close();
|
close();
|
||||||
});
|
});
|
||||||
connect(cancelBtn_, &QPushButton::clicked, this, [this]() {
|
connect(cancelBtn_, &QPushButton::clicked, this, [this]() {
|
||||||
emit cancel();
|
emit cancel();
|
||||||
emit close();
|
close();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue