string fixes and debug remove from chatcleaner

This commit is contained in:
doitux
2009-08-18 08:39:01 +00:00
parent 9e19cd398f
commit 87b695fdf4
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -19,7 +19,7 @@ bool TextFloodCheck::run(unsigned playerId) {
QMapIterator<unsigned, TextFloodInfos> it(msgTimesList);
while (it.hasNext()) {
it.next();
qDebug() << msgTimesList.count() << it.key() << ": " << it.value().floodLevel << it.value().timeStamp << endl;
// qDebug() << msgTimesList.count() << it.key() << ": " << it.value().floodLevel << it.value().timeStamp << endl;
}
QMap<unsigned, TextFloodInfos>::const_iterator i = msgTimesList.find(playerId);
@@ -64,7 +64,7 @@ void TextFloodCheck::cleanMsgTimesList() {
msgTimesList.insert(it.key(), myTextFloodInfos);
}
}
qDebug() << msgTimesList.count() << it.key() << ": " << it.value().floodLevel << it.value().timeStamp << endl;
// qDebug() << msgTimesList.count() << it.key() << ": " << it.value().floodLevel << it.value().timeStamp << endl;
}
}