summaryrefslogtreecommitdiff
path: root/noncore/net
authorskyhusker <skyhusker>2005-06-09 20:06:01 (UTC)
committer skyhusker <skyhusker>2005-06-09 20:06:01 (UTC)
commitccc819750468aa161255e863dac4d2ca55ace253 (patch) (side-by-side diff)
treedcd5f82590f051fe6c6efc6380cc4fc603bb1ae9 /noncore/net
parent5173a392a1422add3e3ae2a38d6bd4eb5df3cf87 (diff)
downloadopie-ccc819750468aa161255e863dac4d2ca55ace253.zip
opie-ccc819750468aa161255e863dac4d2ca55ace253.tar.gz
opie-ccc819750468aa161255e863dac4d2ca55ace253.tar.bz2
Fix #1665
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircmessage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/opieirc/ircmessage.cpp b/noncore/net/opieirc/ircmessage.cpp
index da8db77..f4b09bc 100644
--- a/noncore/net/opieirc/ircmessage.cpp
+++ b/noncore/net/opieirc/ircmessage.cpp
@@ -39,7 +39,7 @@ IRCMessage::IRCMessage(QString line) {
stream >> temp;
if (temp.startsWith(":")) {
/* last parameter */
- m_trailing = line.right(line.length() - line.find(QChar(':'), 1) - 1);
+ m_trailing = line.right(line.length() - line.find(" :") - 2);
m_parameters << m_trailing;
break;
} else {