Add options for log module to hide joins, quits and nick changes.

Fix #601
Close #613
This commit is contained in:
Toon Schoenmakers
2014-07-28 22:27:12 +02:00
committed by Alexey Sokolov
parent 1a574f95ae
commit 03e3920ced
2 changed files with 23 additions and 5 deletions
+1
View File
@@ -994,6 +994,7 @@ public:
bool MoveRegistry(const CString& sPath);
bool SetNV(const CString & sName, const CString & sValue, bool bWriteToDisk = true);
CString GetNV(const CString & sName) const;
bool HasNV(const CString & sName) const { return m_mssRegistry.find(sName) != m_mssRegistry.end(); }
bool DelNV(const CString & sName, bool bWriteToDisk = true);
MCString::iterator FindNV(const CString & sName) { return m_mssRegistry.find(sName); }
MCString::iterator EndNV() { return m_mssRegistry.end(); }