From kde-commits Sat Jun 09 02:58:01 2007 From: Matt Rogers Date: Sat, 09 Jun 2007 02:58:01 +0000 To: kde-commits Subject: branches/KDE/3.5/kdenetwork/kopete/kopete Message-Id: <1181357881.705948.27858.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=118135789129351 SVN commit 673127 by mattr: fix bug 133186 by escaping the nickname text when passing it to the balloon. For the kOne chat style, that would be a bug in the style since it works here with the default Kopete style. BUG: 133186 M +1 -1 systemtray.cpp --- branches/KDE/3.5/kdenetwork/kopete/kopete/systemtray.cpp #673126:673127 @@ -302,7 +302,7 @@ m_balloon = new KopeteBalloon( i18n( "New Message from %1:
\"%2\"
" ) - .arg( msgFrom, msgText ), QString::null ); + .arg( QStyleSheet::escape( msgFrom ), msgText ), QString::null ); connect(m_balloon, SIGNAL(signalBalloonClicked()), mBalloonEventList.first() , SLOT(apply())); connect(m_balloon, SIGNAL(signalButtonClicked()), mBalloonEventList.first() , SLOT(apply())); connect(m_balloon, SIGNAL(signalIgnoreButtonClicked()), mBalloonEventList.first() , SLOT(ignore()));