make lint

This commit is contained in:
Loren Burkholder 2023-06-29 12:58:34 -04:00
parent fedc178827
commit d2a37ec983
2 changed files with 6 additions and 5 deletions

View file

@ -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")

View file

@ -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()