X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=86eaff2385458a918882fd670ba8243d23e6f269;hp=0d725f6edd41cebcde4bf3044619e50063409426;hb=513c0edce6f4c69f16e6a00c144877e8d5940096;hpb=57d23cf77236e4ba25eb2bddb0eb343fe7f5b5df diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 0d725f6e..86eaff23 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -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 * @@ -21,10 +21,10 @@ #ifndef IRCSERVERHANDLER_H #define IRCSERVERHANDLER_H -#include "basichandler.h" +#include "corebasichandler.h" #include "netsplit.h" -class IrcServerHandler : public BasicHandler { +class IrcServerHandler : public CoreBasicHandler { Q_OBJECT public: @@ -107,6 +107,12 @@ private slots: void handleEarlyNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes); + //! Destroy any existing netsplits + /** This slot deletes all netsplit objects + * Used to get rid of existing netsplits on network reconnect + */ + void destroyNetsplits(); + private: void tryNextNick(const QString &errnick, bool erroneus = false); bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams);