summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2009-10-30 22:09:52 (GMT)
committerKevin Smith <git@kismith.co.uk>2009-10-30 22:09:52 (GMT)
commit0f0cde0cdff42db72df4307ed68dac62e8acb1f3 (patch)
tree0bd91e9c4be39149387e368977ac59eabd511f0f /Swift
parent3acf1a8f4cc5a221566de1d3a037f1b19953665b (diff)
downloadswift-0f0cde0cdff42db72df4307ed68dac62e8acb1f3.zip
swift-0f0cde0cdff42db72df4307ed68dac62e8acb1f3.tar.bz2
Remove redundant ) from chat titles with unread messages
Diffstat (limited to 'Swift')
-rw-r--r--Swift/QtUI/QtChatWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtChatWindow.cpp b/Swift/QtUI/QtChatWindow.cpp
index 102fe63..fc8dc1e 100644
--- a/Swift/QtUI/QtChatWindow.cpp
+++ b/Swift/QtUI/QtChatWindow.cpp
@@ -139,7 +139,7 @@ void QtChatWindow::setName(const String& name) {
}
void QtChatWindow::updateTitleWithUnreadCount() {
- setWindowTitle(unreadCount_ > 0 ? QString("(%1) %2)").arg(unreadCount_).arg(contact_) : contact_);
+ setWindowTitle(unreadCount_ > 0 ? QString("(%1) %2").arg(unreadCount_).arg(contact_) : contact_);
emit titleUpdated();
}