mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
make lint
This commit is contained in:
parent
fedc178827
commit
d2a37ec983
2 changed files with 6 additions and 5 deletions
|
@ -10,13 +10,14 @@
|
||||||
#include "MatrixClient.h"
|
#include "MatrixClient.h"
|
||||||
|
|
||||||
ReCaptcha::ReCaptcha(const QString &session, const QString &context, QObject *parent)
|
ReCaptcha::ReCaptcha(const QString &session, const QString &context, QObject *parent)
|
||||||
: QObject{parent},
|
: QObject{parent}
|
||||||
m_session{session},
|
, m_session{session}
|
||||||
m_context{context}
|
, m_context{context}
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReCaptcha::openReCaptcha()
|
void
|
||||||
|
ReCaptcha::openReCaptcha()
|
||||||
{
|
{
|
||||||
const auto url = QString("https://%1:%2/_matrix/client/r0/auth/m.login.recaptcha/"
|
const auto url = QString("https://%1:%2/_matrix/client/r0/auth/m.login.recaptcha/"
|
||||||
"fallback/web?session=%3")
|
"fallback/web?session=%3")
|
||||||
|
|
|
@ -13,8 +13,8 @@
|
||||||
|
|
||||||
#include "Logging.h"
|
#include "Logging.h"
|
||||||
#include "MatrixClient.h"
|
#include "MatrixClient.h"
|
||||||
#include "dialogs/FallbackAuth.h"
|
|
||||||
#include "ReCaptcha.h"
|
#include "ReCaptcha.h"
|
||||||
|
#include "dialogs/FallbackAuth.h"
|
||||||
|
|
||||||
UIA *
|
UIA *
|
||||||
UIA::instance()
|
UIA::instance()
|
||||||
|
|
Loading…
Reference in a new issue