Refactoring of BasicHandler
[quassel.git] / src / core / ircserverhandler.cpp
index d51bb0d..30f5e2a 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-10 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -33,7 +33,7 @@
 #include <QDebug>
 
 IrcServerHandler::IrcServerHandler(CoreNetwork *parent)
-  : BasicHandler(parent),
+  : CoreBasicHandler(parent),
     _whois(false)
 {
   connect(parent, SIGNAL(disconnected(NetworkId)), this, SLOT(destroyNetsplits()));
@@ -1165,7 +1165,6 @@ bool IrcServerHandler::checkParamCount(const QString &methodName, const QList<QB
 }
 
 void IrcServerHandler::destroyNetsplits() {
-  qDebug() << "destroyNetsplits()";
   qDeleteAll(_netsplits);
   _netsplits.clear();
 }