diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-07-25 20:15:31 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-07-25 20:15:31 (GMT) |
commit | 719127a8772f921fdba3169b449a4407143c8c45 (patch) | |
tree | 143db01c914c14d5f5261393a8f2de4ecc18866b /Swift/Controllers/Chat/ChatController.cpp | |
parent | 501989d4b371c850a1c5a0350ca3f1c4900305f4 (diff) | |
download | swift-contrib-719127a8772f921fdba3169b449a4407143c8c45.zip swift-contrib-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.cpp | 2 |
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); } } |