summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-07-25 20:15:31 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-07-25 20:15:31 (GMT)
commit719127a8772f921fdba3169b449a4407143c8c45 (patch)
tree143db01c914c14d5f5261393a8f2de4ecc18866b /Swift/Controllers/Chat/ChatController.cpp
parent501989d4b371c850a1c5a0350ca3f1c4900305f4 (diff)
downloadswift-719127a8772f921fdba3169b449a4407143c8c45.zip
swift-719127a8772f921fdba3169b449a4407143c8c45.tar.bz2
Preparation for merging presences in the chat log.
Diffstat (limited to 'Swift/Controllers/Chat/ChatController.cpp')
-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 3012377..d9524da 100644
--- a/Swift/Controllers/Chat/ChatController.cpp
+++ b/Swift/Controllers/Chat/ChatController.cpp
@@ -113,7 +113,7 @@ void ChatController::handlePresenceChange(boost::shared_ptr<Presence> newPresenc
chatStateTracker_->handlePresenceChange(newPresence, previousPresence);
String newStatusChangeString = getStatusChangeString(newPresence);
if (!previousPresence || newStatusChangeString != getStatusChangeString(previousPresence)) {
- chatWindow_->addSystemMessage(newStatusChangeString);
+ chatWindow_->addPresenceMessage(newStatusChangeString);
}
}