diff options
Diffstat (limited to 'src/dialogs/ReCaptcha.h')
-rw-r--r-- | src/dialogs/ReCaptcha.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/dialogs/ReCaptcha.h b/src/dialogs/ReCaptcha.h deleted file mode 100644 index 53c7453e..00000000 --- a/src/dialogs/ReCaptcha.h +++ /dev/null @@ -1,29 +0,0 @@ -// SPDX-FileCopyrightText: Nheko Contributors -// -// SPDX-License-Identifier: GPL-3.0-or-later - -#pragma once - -#include <QWidget> - -class QPushButton; - -namespace dialogs { - -class ReCaptcha final : public QWidget -{ - Q_OBJECT - -public: - ReCaptcha(const QString &session, QWidget *parent = nullptr); - -signals: - void confirmation(); - void cancel(); - -private: - QPushButton *openCaptchaBtn_; - QPushButton *confirmBtn_; - QPushButton *cancelBtn_; -}; -} // dialogs |