summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-03-21 11:32:16 (GMT)
committerKevin Smith <kevin.smith@isode.com>2015-03-28 09:20:44 (GMT)
commit69a5c4c3c99e05a81f0e89917302936a986c968e (patch)
tree150134ced8c49f586442b2dbdb484da327ecc679 /Swift
parent1d09d9ead06be72ee0c4026aa027cd90e6f1546b (diff)
downloadswift-69a5c4c3c99e05a81f0e89917302936a986c968e.zip
swift-69a5c4c3c99e05a81f0e89917302936a986c968e.tar.bz2
Fix typo in ChatController regarding Message Receipts
Test-Information: None. Change-Id: If02bc8bf250b129522bbeb841f699ccea9721422
Diffstat (limited to 'Swift')
-rw-r--r--Swift/Controllers/Chat/ChatController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/Chat/ChatController.cpp b/Swift/Controllers/Chat/ChatController.cpp
index d28b29b..306ee9e 100644
--- a/Swift/Controllers/Chat/ChatController.cpp
+++ b/Swift/Controllers/Chat/ChatController.cpp
@@ -251,7 +251,7 @@ void ChatController::checkForDisplayingDisplayReceiptsAlert() {
if (userWantsReceipts_ && (contactSupportsReceipts_ == ChatWindow::No)) {
newDeliverReceiptAlert = chatWindow_->addAlert(QT_TRANSLATE_NOOP("", "This chat doesn't support delivery receipts."));
} else if (userWantsReceipts_ && (contactSupportsReceipts_ == ChatWindow::Maybe)) {
- newDeliverReceiptAlert = chatWindow_->addAlert(QT_TRANSLATE_NOOP("", "This chat may not support delivery receipts. You might not receive delivery receipts for the messages you sent."));
+ newDeliverReceiptAlert = chatWindow_->addAlert(QT_TRANSLATE_NOOP("", "This chat may not support delivery receipts. You might not receive delivery receipts for the messages you send."));
} else {
if (deliveryReceiptAlert_) {
chatWindow_->removeAlert(*deliveryReceiptAlert_);