From 4c7be7426e7661588be8ab9618b78b8a01f0d70f Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Mon, 8 Feb 2021 14:53:32 +0200 Subject: [PATCH] Fix minor typos --- imports/NeoChat/Component/Login/Sso.qml | 4 ++-- src/actionshandler.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/imports/NeoChat/Component/Login/Sso.qml b/imports/NeoChat/Component/Login/Sso.qml index 36f6c7e3b..b105fcc28 100644 --- a/imports/NeoChat/Component/Login/Sso.qml +++ b/imports/NeoChat/Component/Login/Sso.qml @@ -26,14 +26,14 @@ LoginStep { onSsoUrlChanged: { Qt.openUrlExternally(LoginHelper.ssoUrl) } - onConnected: proccessed("qrc:/imports/NeoChat/Component/Login/Loading.qml") + onConnected: processed("qrc:/imports/NeoChat/Component/Login/Loading.qml") } QQC2.Button { text: i18n("Login") onClicked: { LoginHelper.loginWithSso() - root.showMessage(i18n("Complete the authentification steps in your browser")) + root.showMessage(i18n("Complete the authentication steps in your browser")) } Component.onCompleted: forceActiveFocus() Keys.onReturnPressed: clicked() diff --git a/src/actionshandler.h b/src/actionshandler.h index 97b29b45a..970656c1e 100644 --- a/src/actionshandler.h +++ b/src/actionshandler.h @@ -17,7 +17,7 @@ class ActionsHandler : public QObject { Q_OBJECT - /// \brief List of command definition. Useful for building an autcompletion + /// \brief List of command definition. Useful for building an autocompletion /// engine or an help dialog. Q_PROPERTY(QVariantList commands READ commands CONSTANT)