From 737b0b5ce3e5db15bf11f696b070c9b475f92b61 Mon Sep 17 00:00:00 2001 From: skyhusker Date: Wed, 02 Feb 2005 13:36:32 +0000 Subject: Slightly modified debug messages --- (limited to 'noncore/net/opieirc') diff --git a/noncore/net/opieirc/ircmessage.cpp b/noncore/net/opieirc/ircmessage.cpp index 1b7072e..da8db77 100644 --- a/noncore/net/opieirc/ircmessage.cpp +++ b/noncore/net/opieirc/ircmessage.cpp @@ -52,12 +52,8 @@ IRCMessage::IRCMessage(QString line) { /* Is this a CTCP command */ if ((m_command == "PRIVMSG" || m_command == "NOTICE") && m_trailing.length()>0 && m_trailing.left(1) == QChar(1)) { m_ctcp = TRUE; - if (m_command == "PRIVMSG") { - m_ctcpRequest = TRUE; - } - else { - m_ctcpRequest = FALSE; - } + + m_ctcpRequest = (m_command == "PRIVMSG"); /* Strip CTCP \001 characters */ m_allParameters = m_allParameters.replace(QRegExp(QChar(1)), ""); @@ -85,12 +81,16 @@ IRCMessage::IRCMessage(QString line) { odebug << "Prefix: " << m_prefix << oendl; odebug << "Command: " << m_command << oendl; odebug << "Allparameters: " << m_allParameters << oendl; + for (unsigned int i=0; i