diff options
author | Kevin Smith <git@kismith.co.uk> | 2009-10-30 22:09:52 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2009-10-30 22:09:52 (GMT) |
commit | 0f0cde0cdff42db72df4307ed68dac62e8acb1f3 (patch) | |
tree | 0bd91e9c4be39149387e368977ac59eabd511f0f /Swift/QtUI | |
parent | 3acf1a8f4cc5a221566de1d3a037f1b19953665b (diff) | |
download | swift-0f0cde0cdff42db72df4307ed68dac62e8acb1f3.zip swift-0f0cde0cdff42db72df4307ed68dac62e8acb1f3.tar.bz2 |
Remove redundant ) from chat titles with unread messages
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/QtChatWindow.cpp | 2 |
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(); } |