summaryrefslogtreecommitdiff
authorskyhusker <skyhusker>2005-01-16 02:13:15 (UTC)
committer skyhusker <skyhusker>2005-01-16 02:13:15 (UTC)
commite420e24bb1506e313cc38174111d424ba7274e33 (patch) (side-by-side diff)
tree3bc3297f52c1e954df6669a5abb65902ad5605e4
parent972d0500299d6bed8e0890810f9c120390268dcf (diff)
downloadopie-e420e24bb1506e313cc38174111d424ba7274e33.zip
opie-e420e24bb1506e313cc38174111d424ba7274e33.tar.gz
opie-e420e24bb1506e313cc38174111d424ba7274e33.tar.bz2
Fixed some warnings
Diffstat (more/less context) (show 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
@@ -2,4 +2,5 @@
#include <qstring.h>
#include <qstringlist.h>
+#include <qregexp.h>
#include "ircmessage.h"
@@ -68,7 +69,7 @@ IRCMessage::IRCMessage(QString line) {
}
- /*
- //-- Uncomment to debug --
+ //-- Uncomment to debug --
+ /*
printf("Parsed : '%s'\n", line.ascii());
printf("Prefix : '%s'\n", m_prefix.ascii());
@@ -81,6 +82,6 @@ IRCMessage::IRCMessage(QString line) {
printf("CTCP Destination : '%s'\n", m_ctcpDestination.latin1());
printf("CTCP param count is : '%i'\n", m_parameters.count());
-
*/
+
}
@@ -97,5 +98,5 @@ QStringList IRCMessage::params(const QString &paramstring) const {
int pos = (*it).find(':');
if(pos < 0) {
- if((*it).toInt() < m_parameters.count())
+ if(static_cast<unsigned int>((*it).toInt()) < m_parameters.count())
retvalue << m_parameters[(*it).toInt()];
}
@@ -105,5 +106,5 @@ QStringList IRCMessage::params(const QString &paramstring) const {
start = (*it).left(pos).toInt();
end = (*it).mid(pos+1).toInt();
- for (int i=start;i<=end && i < m_parameters.count() ;++i) {
+ for (int i=start;i<=end && i < static_cast<int>(m_parameters.count()) ;++i) {
retvalue << m_parameters[i];
}