summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/ReCaptcha.cpp9
-rw-r--r--src/ui/UIA.cpp2
2 files changed, 6 insertions, 5 deletions
diff --git a/src/ReCaptcha.cpp b/src/ReCaptcha.cpp
index ffd202f5..ab9db8cc 100644
--- a/src/ReCaptcha.cpp
+++ b/src/ReCaptcha.cpp
@@ -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")
diff --git a/src/ui/UIA.cpp b/src/ui/UIA.cpp
index ba35df9b..9654c9aa 100644
--- a/src/ui/UIA.cpp
+++ b/src/ui/UIA.cpp
@@ -13,8 +13,8 @@
 
 #include "Logging.h"
 #include "MatrixClient.h"
-#include "dialogs/FallbackAuth.h"
 #include "ReCaptcha.h"
+#include "dialogs/FallbackAuth.h"
 
 UIA *
 UIA::instance()