summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircmessage.cpp
authorskyhusker <skyhusker>2005-01-16 02:13:15 (UTC)
committer skyhusker <skyhusker>2005-01-16 02:13:15 (UTC)
commite420e24bb1506e313cc38174111d424ba7274e33 (patch) (unidiff)
tree3bc3297f52c1e954df6669a5abb65902ad5605e4 /noncore/net/opieirc/ircmessage.cpp
parent972d0500299d6bed8e0890810f9c120390268dcf (diff)
downloadopie-e420e24bb1506e313cc38174111d424ba7274e33.zip
opie-e420e24bb1506e313cc38174111d424ba7274e33.tar.gz
opie-e420e24bb1506e313cc38174111d424ba7274e33.tar.bz2
Fixed some warnings
Diffstat (limited to 'noncore/net/opieirc/ircmessage.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircmessage.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/noncore/net/opieirc/ircmessage.cpp b/noncore/net/opieirc/ircmessage.cpp
index d0b2652..41386ee 100644
--- a/noncore/net/opieirc/ircmessage.cpp
+++ b/noncore/net/opieirc/ircmessage.cpp
@@ -3,2 +3,3 @@
3#include <qstringlist.h> 3#include <qstringlist.h>
4#include <qregexp.h>
4 5
@@ -69,5 +70,5 @@ IRCMessage::IRCMessage(QString line) {
69 70
70 /* 71
71 //-- Uncomment to debug -- 72 //-- Uncomment to debug --
72 73 /*
73 printf("Parsed : '%s'\n", line.ascii()); 74 printf("Parsed : '%s'\n", line.ascii());
@@ -82,4 +83,4 @@ IRCMessage::IRCMessage(QString line) {
82 printf("CTCP param count is : '%i'\n", m_parameters.count()); 83 printf("CTCP param count is : '%i'\n", m_parameters.count());
83
84 */ 84 */
85
85} 86}
@@ -98,3 +99,3 @@ QStringList IRCMessage::params(const QString &paramstring) const {
98 if(pos < 0) { 99 if(pos < 0) {
99 if((*it).toInt() < m_parameters.count()) 100 if(static_cast<unsigned int>((*it).toInt()) < m_parameters.count())
100 retvalue << m_parameters[(*it).toInt()]; 101 retvalue << m_parameters[(*it).toInt()];
@@ -106,3 +107,3 @@ QStringList IRCMessage::params(const QString &paramstring) const {
106 end = (*it).mid(pos+1).toInt(); 107 end = (*it).mid(pos+1).toInt();
107 for (int i=start;i<=end && i < m_parameters.count() ;++i) { 108 for (int i=start;i<=end && i < static_cast<int>(m_parameters.count()) ;++i) {
108 retvalue << m_parameters[i]; 109 retvalue << m_parameters[i];