diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-10-01 16:36:33 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-10-01 16:36:40 (GMT) |
commit | 31fc890d97c90a729e306c544a611f640ed00a0d (patch) | |
tree | f2e5e292c39192899309ab61593b61e853831744 /Swift/Controllers/Chat/ChatController.cpp | |
parent | 42559ccdec6c23774001f1a08d64a4dc5ba42532 (diff) | |
download | swift-31fc890d97c90a729e306c544a611f640ed00a0d.zip swift-31fc890d97c90a729e306c544a611f640ed00a0d.tar.bz2 |
Improve spacing in status messages in chat dialogs
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 90ca7f8..07243a2 100644 --- a/Swift/Controllers/Chat/ChatController.cpp +++ b/Swift/Controllers/Chat/ChatController.cpp @@ -155,7 +155,7 @@ String ChatController::getStatusChangeString(boost::shared_ptr<Presence> presenc } } if (!presence->getStatus().isEmpty()) { - response += "(" + presence->getStatus() + ")"; + response += " (" + presence->getStatus() + ")"; } return response + "."; } |