X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=0d725f6edd41cebcde4bf3044619e50063409426;hb=45cf725071f19107d73b96f8a24b47df1e2f474e;hp=f035eb9aff45e18970eaa1acd8aea41b472b82a4;hpb=fd80315c076ede937f5d51ba6f8061a32d0107ec;p=quassel.git diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index f035eb9a..0d725f6e 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -87,9 +87,10 @@ private slots: /** This slot handles a bulk-join after a netsplit is over * \param channel The channel the users joined * \param users The list of users that joind the channel + * \param modes The list of modes the users get set * \param quitMessage The message we received when the netsplit occured */ - void handleNetsplitJoin(const QString &channel, const QStringList &users, const QString &quitMessage); + void handleNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes, const QString &quitMessage); //! Quits after a netsplit /** This slot handles a bulk-quit after a netsplit occured @@ -104,6 +105,8 @@ private slots: */ void handleNetsplitFinished(); + void handleEarlyNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes); + private: void tryNextNick(const QString &errnick, bool erroneus = false); bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams);