Skip to content

Commit

Permalink
Fix previous commit
Browse files Browse the repository at this point in the history
And yes, I'm sure it worked..
  • Loading branch information
machekku committed Jan 19, 2010
1 parent 4a2eaec commit c350f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/groupchatdlg.cpp
Expand Up @@ -1497,7 +1497,7 @@ void GCMainDlg::appendSysMsg(const QString &str, bool alert, const QDateTime &ts
updateLastMsgTime(time);
QString timestr = ui_.log->formatTimeStamp(time);
QString color = PsiOptions::instance()->getOption("options.ui.look.colors.messages.informational").toString();
ui_.log->appendText(QString("<font color=\"%1\">[%2]").arg(color, timestr) + QString(" *** %1</font>").arg(Qt::escape(str)));
ui_.log->appendText(QString("<font color=\"%1\">[%2]").arg(color, timestr) + QString(" *** %1</font>").arg(str));

if(alert)
doAlert();
Expand Down

0 comments on commit c350f02

Please sign in to comment.