[Konversation-devel] [Bug 232675] Konversation doesn't honor mIRC colors in topic
Bernd Buschinski
b.buschinski at web.de
Thu Sep 9 00:09:40 CEST 2010
https://bugs.kde.org/show_bug.cgi?id=232675
--- Comment #2 from Bernd Buschinski <b buschinski web de> 2010-09-09 00:09:39 ---
commit 57abec5ee9a43bf3d7fde6e67b3c43c96020aaec
Author: Bernd Buschinski <b.buschinski at web.de>
Date: Tue Sep 7 19:50:28 2010 +0200
Don't strip irc markups from topic in inputfilter.
If we strip it here '/topic' will always be colorless.
NOTE: If we changed the topic with the topiceditor, the
topic history always had irc markes in it.
CCBUG:232675
diff --git a/src/irc/inputfilter.cpp b/src/irc/inputfilter.cpp
index 7948c63..240d850 100644
--- a/src/irc/inputfilter.cpp
+++ b/src/irc/inputfilter.cpp
@@ -1092,7 +1092,7 @@ void InputFilter::parseServerCommand(const QString
&prefix, const QString &comma
{
if (plHas(3))
{
- QString topic = Konversation::removeIrcMarkup(trailing);
+ QString topic(trailing);
// FIXME: This is an abuse of the automaticRequest system:
We're
// using it in an inverted manner, i.e. the
automaticRequest is
--
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the Konversation-devel
mailing list