Remove warning (unused param) in IrcServerHandler
authorManuel Nickschas <sputnick@quassel-irc.org>
Tue, 1 Jul 2008 21:56:42 +0000 (23:56 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Tue, 1 Jul 2008 21:56:42 +0000 (23:56 +0200)
src/core/ircserverhandler.cpp

index 9bdb3c6..20a659a 100644 (file)
@@ -763,6 +763,7 @@ void IrcServerHandler::handle324(const QString &prefix, const QList<QByteArray>
 /* RPL_??? - "<channel> <creation time (unix)>" */
 void IrcServerHandler::handle329(const QString &prefix, const QList<QByteArray> &params) {
   Q_UNUSED(prefix);
+  Q_UNUSED(params);
   // FIXME implement this... 
 }