X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fnetworkconnection.h;h=57fd9d25648fe1eb8e64c51266342df6715b487e;hb=4d159822323116d1a7c7464b2624da7b65035fd6;hp=f9db515461087f2cfd6c3a15ae4715baf0e14b8c;hpb=da3aa4136fe01e142238f0f42fe1273481037b9d;p=quassel.git diff --git a/src/core/networkconnection.h b/src/core/networkconnection.h index f9db5154..57fd9d25 100644 --- a/src/core/networkconnection.h +++ b/src/core/networkconnection.h @@ -95,6 +95,7 @@ private slots: void sendPerform(); void autoReconnectSettingsChanged(); void doAutoReconnect(); + void sendWho(); void nickChanged(const QString &newNick, const QString &oldNick); // this signal is inteded to rename query buffers in the storage backend signals: @@ -129,6 +130,7 @@ private: Network *_network; CoreSession *_coreSession; + BufferInfo _statusBufferInfo; IrcServerHandler *_ircServerHandler; UserInputHandler *_userInputHandler; @@ -138,6 +140,8 @@ private: QTimer _autoReconnectTimer; int _autoReconnectCount; + QTimer _whoTimer; + class ParseError : public Exception { public: ParseError(QString cmd, QString prefix, QStringList params);