author | skyhusker <skyhusker> | 2005-01-23 21:48:34 (UTC) |
---|---|---|
committer | skyhusker <skyhusker> | 2005-01-23 21:48:34 (UTC) |
commit | 2074382fccea58a55b68c51815abc5df463473aa (patch) (side-by-side diff) | |
tree | b3b706369267d6dce93097997c3ee8e6bb4de1b5 | |
parent | dd410f1eb69e68f04cf26b6d3e6bca88f0987f71 (diff) | |
download | opie-2074382fccea58a55b68c51815abc5df463473aa.zip opie-2074382fccea58a55b68c51815abc5df463473aa.tar.gz opie-2074382fccea58a55b68c51815abc5df463473aa.tar.bz2 |
Changed notation in escape characters to look better
-rw-r--r-- | noncore/net/opieirc/ircoutput.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/net/opieirc/ircoutput.cpp b/noncore/net/opieirc/ircoutput.cpp index d2c730f..26d90cb 100644 --- a/noncore/net/opieirc/ircoutput.cpp +++ b/noncore/net/opieirc/ircoutput.cpp @@ -5,6 +5,6 @@ IRCOutputEscapeSecuences IRCOutput::m_escapeSecuences[] = { - { '', "<b>", "</b>"}, - { '', "<u>", "</u>"}, + { '\002', "<b>", "</b>"}, + { '\037', "<u>", "</u>"}, { 0, 0, 0}, }; @@ -12,6 +12,6 @@ IRCOutputEscapeSecuences IRCOutput::m_escapeSecuences[] = { IRCOutput::IRCOutput(IRCOutputType type, QString message) { m_type = type; - /* Filter color, bold and underline escape sequences, since they aren't implemented yet */ - m_message = message.replace(QRegExp("[1-9]*,*[1-9]*"), ""); + /* Filter color escape sequences, since they aren't implemented yet */ + m_message = message.replace(QRegExp("\003[1-9]*,*[1-9]*"), ""); } |