mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Remove unused field and getter
When account-tag was introduced, these fields were used, but since cap 3.2 this is no longer useful
This commit is contained in:
@@ -116,7 +116,6 @@ class CClient : public CIRCSocket {
|
||||
bool HasCapNotify() const { return m_bCapNotify; }
|
||||
bool HasAwayNotify() const { return m_bAwayNotify; }
|
||||
bool HasAccountNotify() const { return m_bAccountNotify; }
|
||||
bool HasAccountTag() const { return m_bAccountTag; }
|
||||
bool HasExtendedJoin() const { return m_bExtendedJoin; }
|
||||
bool HasNamesx() const { return m_bNamesx; }
|
||||
bool HasUHNames() const { return m_bUHNames; }
|
||||
@@ -287,7 +286,6 @@ class CClient : public CIRCSocket {
|
||||
bool m_bCapNotify;
|
||||
bool m_bAwayNotify;
|
||||
bool m_bAccountNotify;
|
||||
bool m_bAccountTag;
|
||||
bool m_bExtendedJoin;
|
||||
bool m_bNamesx;
|
||||
bool m_bUHNames;
|
||||
|
||||
@@ -150,7 +150,6 @@ class CIRCSock : public CIRCSocket {
|
||||
bool HasUHNames() const { return m_bUHNames; }
|
||||
bool HasAwayNotify() const { return m_bAwayNotify; }
|
||||
bool HasAccountNotify() const { return m_bAccountNotify; }
|
||||
bool HasAccountTag() const { return m_bAccountTag; }
|
||||
bool HasExtendedJoin() const { return m_bExtendedJoin; }
|
||||
bool HasServerTime() const { return m_bServerTime; }
|
||||
const std::set<char>& GetUserModes() const {
|
||||
@@ -210,7 +209,6 @@ class CIRCSock : public CIRCSocket {
|
||||
bool m_bUHNames;
|
||||
bool m_bAwayNotify;
|
||||
bool m_bAccountNotify;
|
||||
bool m_bAccountTag;
|
||||
bool m_bExtendedJoin;
|
||||
bool m_bServerTime;
|
||||
CString m_sPerms;
|
||||
|
||||
Reference in New Issue
Block a user