From: Manuel Nickschas Date: Tue, 19 Feb 2013 20:40:40 +0000 (+0100) Subject: Fix issue with "Topic set" message X-Git-Tag: 0.9-beta1~32 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=bd5f012ca9d067c2ed55c8f2c5da1657fa81f994 Fix issue with "Topic set" message Yeah, those parens can be confusing. --- diff --git a/src/core/eventstringifier.cpp b/src/core/eventstringifier.cpp index 706abb58..26a2bbe6 100644 --- a/src/core/eventstringifier.cpp +++ b/src/core/eventstringifier.cpp @@ -615,7 +615,7 @@ void EventStringifier::processIrcEvent333(IrcEvent *e) QDateTime topicSetTime = QDateTime::fromTime_t(e->params()[2].toInt()); displayMsg(e, Message::Topic, tr("Topic set by %1 on %2") .arg(e->params()[1], - QLocale().toString(topicSetTime, QLocale().dateTimeFormat()), QString(), channel)); + QLocale().toString(topicSetTime, QLocale().dateTimeFormat())), QString(), channel); }