X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.h;h=c11aee843bbee660f24e73c9499313ad9f151ff6;hp=42ad12d583dd859ad3160242f95e6e711e93dd34;hb=dbef809f160236d05e93256d8309085225b8b928;hpb=eb606f89b0f97cbcb69b87e0ae749a05cd473ff2 diff --git a/src/core/corenetwork.h b/src/core/corenetwork.h index 42ad12d5..c11aee84 100644 --- a/src/core/corenetwork.h +++ b/src/core/corenetwork.h @@ -75,7 +75,7 @@ public: inline QString channelKey(const QString &channel) const { return _channelKeys.value(channel.toLower(), QString()); } - inline bool isAutoWhoInProgress(const QString &channel) const { return _autoWhoInProgress.value(channel.toLower(), 0); } + inline bool isAutoWhoInProgress(const QString &channel) const { return _autoWhoPending.value(channel.toLower(), 0); } inline UserId userId() const { return _coreSession->user(); } @@ -181,7 +181,7 @@ private: bool _autoWhoEnabled; QStringList _autoWhoQueue; - QHash _autoWhoInProgress; + QHash _autoWhoPending; int _autoWhoInterval; int _autoWhoNickLimit; int _autoWhoDelay;