From 6793bdf3fd30096e018bb479ae8b52854209b108 Mon Sep 17 00:00:00 2001
From: Nicolas Werner <nicolas.werner@hotmail.de>
Date: Sun, 17 Oct 2021 17:20:51 +0200
Subject: [PATCH] lint

---
 resources/qml/SelfVerificationCheck.qml   |  4 ++--
 src/encryption/DeviceVerificationFlow.cpp |  4 ++--
 src/encryption/VerificationManager.h      |  1 -
 src/notifications/ManagerWin.cpp          | 12 +++++++++---
 src/voip/WebRTCSession.cpp                |  6 +++++-
 5 files changed, 18 insertions(+), 9 deletions(-)

diff --git a/resources/qml/SelfVerificationCheck.qml b/resources/qml/SelfVerificationCheck.qml
index c5eee669b..a7a9e41af 100644
--- a/resources/qml/SelfVerificationCheck.qml
+++ b/resources/qml/SelfVerificationCheck.qml
@@ -237,8 +237,8 @@ Item {
             console.log("STATUS CHANGED: " + SelfVerificationStatus.status);
             if (SelfVerificationStatus.status == SelfVerificationStatus.NoMasterKey)
                 bootstrapCrosssigning.open();
-            else if (SelfVerificationStatus.status == SelfVerificationStatus.UnverifiedMasterKey)
-                verifyMasterKey.open();
+//            else if (SelfVerificationStatus.status == SelfVerificationStatus.UnverifiedMasterKey)
+//                verifyMasterKey.open();
 
         }
 
diff --git a/src/encryption/DeviceVerificationFlow.cpp b/src/encryption/DeviceVerificationFlow.cpp
index 2481d4f94..ea5a060dc 100644
--- a/src/encryption/DeviceVerificationFlow.cpp
+++ b/src/encryption/DeviceVerificationFlow.cpp
@@ -631,8 +631,8 @@ DeviceVerificationFlow::sendVerificationRequest()
         req.to      = this->toClient.to_string();
         req.msgtype = "m.key.verification.request";
         req.body    = "User is requesting to verify keys with you. However, your client does "
-                   "not support this method, so you will need to use the legacy method of "
-                   "key verification.";
+                      "not support this method, so you will need to use the legacy method of "
+                      "key verification.";
     }
 
     send(req);
diff --git a/src/encryption/VerificationManager.h b/src/encryption/VerificationManager.h
index e00ddc10f..d6a39ccf8 100644
--- a/src/encryption/VerificationManager.h
+++ b/src/encryption/VerificationManager.h
@@ -45,4 +45,3 @@ private:
     bool isInitialSync_ = false;
     RoomlistModel *rooms_;
 };
-
diff --git a/src/notifications/ManagerWin.cpp b/src/notifications/ManagerWin.cpp
index 4376e4d81..556ca028e 100644
--- a/src/notifications/ManagerWin.cpp
+++ b/src/notifications/ManagerWin.cpp
@@ -100,10 +100,16 @@ NotificationsManager::systemPostNotification(const QString &line1,
     WinToast::instance()->showToast(templ, new CustomHandler());
 }
 
-void NotificationsManager::actionInvoked(uint, QString) {}
-void NotificationsManager::notificationReplied(uint, QString) {}
+void
+NotificationsManager::actionInvoked(uint, QString)
+{}
+void
+NotificationsManager::notificationReplied(uint, QString)
+{}
 
-void NotificationsManager::notificationClosed(uint, uint) {}
+void
+NotificationsManager::notificationClosed(uint, uint)
+{}
 
 void
 NotificationsManager::removeNotification(const QString &, const QString &)
diff --git a/src/voip/WebRTCSession.cpp b/src/voip/WebRTCSession.cpp
index 801a365cb..8e0a9f79e 100644
--- a/src/voip/WebRTCSession.cpp
+++ b/src/voip/WebRTCSession.cpp
@@ -1114,7 +1114,11 @@ WebRTCSession::haveLocalPiP() const
     return false;
 }
 
-bool WebRTCSession::createOffer(webrtc::CallType, uint32_t) { return false; }
+bool
+WebRTCSession::createOffer(webrtc::CallType, uint32_t)
+{
+    return false;
+}
 
 bool
 WebRTCSession::acceptOffer(const std::string &)
-- 
GitLab