mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Fix doxygen of CModule::GetNetwork() and CModule::GetClient()
Thanks to BtbN for reporting this.
This commit is contained in:
@@ -1006,10 +1006,13 @@ public:
|
||||
* case this is the user pointer.
|
||||
*/
|
||||
CUser* GetUser() const { return m_pUser; }
|
||||
/** @returns nullptr except when we are in a network-specific module hook in
|
||||
* which case this is the network for which the hook is called.
|
||||
*/
|
||||
CIRCNetwork* GetNetwork() const { return m_pNetwork; }
|
||||
/** @returns nullptr except when we are in a client-specific module hook in
|
||||
* which case this is the client for which the hook is called.
|
||||
*/
|
||||
CIRCNetwork* GetNetwork() const { return m_pNetwork; }
|
||||
CClient* GetClient() const { return m_pClient; }
|
||||
CSockManager* GetManager() const { return m_pManager; }
|
||||
// !Getters
|
||||
|
||||
Reference in New Issue
Block a user