mirror of
https://github.com/znc/znc.git
synced 2026-08-07 09:22:55 +02:00
Merge commit 'refs/pull/705/head' of github.com:znc/znc
This commit is contained in:
+2
-2
@@ -110,7 +110,7 @@ public:
|
||||
// Setters
|
||||
void SetModeKnown(bool b) { m_bModeKnown = b; }
|
||||
void SetIsOn(bool b) { m_bIsOn = b; if (!b) { Reset(); } }
|
||||
void SetKey(const CString& s) { m_sKey = s; }
|
||||
void SetKey(const CString& s);
|
||||
void SetTopic(const CString& s) { m_sTopic = s; }
|
||||
void SetTopicOwner(const CString& s) { m_sTopicOwner = s; }
|
||||
void SetTopicDate(unsigned long u) { m_ulTopicDate = u; }
|
||||
@@ -118,7 +118,7 @@ public:
|
||||
void SetAutoClearChanBuffer(bool b);
|
||||
void InheritAutoClearChanBuffer(bool b);
|
||||
void SetDetached(bool b = true) { m_bDetached = b; }
|
||||
void SetInConfig(bool b) { m_bInConfig = b; }
|
||||
void SetInConfig(bool b);
|
||||
void SetCreationDate(unsigned long u) { m_ulCreationDate = u; }
|
||||
void Disable() { m_bDisabled = true; }
|
||||
void Enable();
|
||||
|
||||
+2
-1
@@ -40,7 +40,8 @@ public:
|
||||
enum ConfigState {
|
||||
ECONFIG_NOTHING,
|
||||
ECONFIG_NEED_REHASH,
|
||||
ECONFIG_NEED_WRITE
|
||||
ECONFIG_NEED_WRITE,
|
||||
ECONFIG_NEED_VERBOSE_WRITE
|
||||
};
|
||||
|
||||
void DeleteUsers();
|
||||
|
||||
Reference in New Issue
Block a user