X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.h;h=0af071f127b18e3496d782805ec77077581b3dde;hp=1e743bbb48b5f212aef3623518351cc0414dc6fd;hb=c8ddabf364eff2400c61cea395aefe69eb8ba1b3;hpb=a95ad2de573027f9bee36db972bcae4195168d0c diff --git a/src/core/coresessioneventprocessor.h b/src/core/coresessioneventprocessor.h index 1e743bbb..0af071f1 100644 --- a/src/core/coresessioneventprocessor.h +++ b/src/core/coresessioneventprocessor.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2020 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -64,6 +64,7 @@ public: Q_INVOKABLE void lateProcessIrcEventQuit(IrcEvent* event); Q_INVOKABLE void processIrcEventTopic(IrcEvent* event); Q_INVOKABLE void processIrcEventError(IrcEvent* event); /// ERROR message from server + Q_INVOKABLE void processIrcEventSetname(IrcEvent* event); ///< Updated realname information #ifdef HAVE_QCA2 Q_INVOKABLE void processKeyEvent(KeyEvent* event); #endif @@ -124,18 +125,18 @@ private slots: /** This slot handles a bulk-join after a netsplit is over * \param net The network * \param channel The channel the users joined - * \param users The list of users that joind the channel + * \param users The list of users that joined the channel * \param modes The list of modes the users get set - * \param quitMessage The message we received when the netsplit occured + * \param quitMessage The message we received when the netsplit occurred */ void handleNetsplitJoin(Network* net, 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 + /** This slot handles a bulk-quit after a netsplit occurred * \param net The network - * \param channel The channel the users quitted + * \param channel The channel the users quit * \param users The list of users that got split - * \param quitMessage The message we received when the netsplit occured + * \param quitMessage The message we received when the netsplit occurred */ void handleNetsplitQuit(Network* net, const QString& channel, const QStringList& users, const QString& quitMessage);