mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +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"
|
||||
|
||||
ReCaptcha::ReCaptcha(const QString &session, const QString &context, QObject *parent)
|
||||
: QObject{parent},
|
||||
m_session{session},
|
||||
m_context{context}
|
||||
: QObject{parent}
|
||||
, m_session{session}
|
||||
, m_context{context}
|
||||
{
|
||||
}
|
||||
|
||||
void ReCaptcha::openReCaptcha()
|
||||
void
|
||||
ReCaptcha::openReCaptcha()
|
||||
{
|
||||
const auto url = QString("https://%1:%2/_matrix/client/r0/auth/m.login.recaptcha/"
|
||||
"fallback/web?session=%3")
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
|
||||
#include "Logging.h"
|
||||
#include "MatrixClient.h"
|
||||
#include "dialogs/FallbackAuth.h"
|
||||
#include "ReCaptcha.h"
|
||||
#include "dialogs/FallbackAuth.h"
|
||||
|
||||
UIA *
|
||||
UIA::instance()
|
||||
|
|
Loading…
Reference in a new issue