summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-10-17 17:20:51 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-10-17 17:20:51 +0200
commit6793bdf3fd30096e018bb479ae8b52854209b108 (patch)
tree76b9d9549dafff7b055f15f94c993634b4346ba4 /src
parentUse allow list for URI schemes (diff)
downloadnheko-6793bdf3fd30096e018bb479ae8b52854209b108.tar.xz
lint
Diffstat (limited to 'src')
-rw-r--r--src/encryption/DeviceVerificationFlow.cpp4
-rw-r--r--src/encryption/VerificationManager.h1
-rw-r--r--src/notifications/ManagerWin.cpp12
-rw-r--r--src/voip/WebRTCSession.cpp6
4 files changed, 16 insertions, 7 deletions
diff --git a/src/encryption/DeviceVerificationFlow.cpp b/src/encryption/DeviceVerificationFlow.cpp

index 2481d4f9..ea5a060d 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 e00ddc10..d6a39ccf 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 4376e4d8..556ca028 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 801a365c..8e0a9f79 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 &)