diff options
| author | George Hazan <george.hazan@gmail.com> | 2024-02-01 17:19:08 +0300 |
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2024-02-01 17:19:08 +0300 |
| commit | 9dddfef7c8a3b41cfc3584462af7d5c67f024756 (patch) | |
| tree | a4ccb066c63f9ee332df6812e573d9672ed8f552 /include | |
| parent | 89547af5b067b00cae18c44e356044c1e75361cb (diff) | |
fixes #4128 completely
Diffstat (limited to 'include')
| -rw-r--r-- | include/m_clist.h | 1 | ||||
| -rw-r--r-- | include/m_clistint.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index 365f95669f..7b9f0bf4c4 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -382,6 +382,7 @@ EXTERN_C MIR_APP_DLL(int) Clist_GroupRename(MGROUP hGroup, const wchar_t *ptszNe #define GROUPF_EXPANDED 0x04
#define GROUPF_HIDEOFFLINE 0x08
+#define GROUPF_SHOWOFFLINE 0x40
EXTERN_C MIR_APP_DLL(wchar_t*) Clist_GroupGetName(MGROUP hGroup, uint32_t *pdwFlags = nullptr);
diff --git a/include/m_clistint.h b/include/m_clistint.h index 93401834ae..096ed11883 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -85,7 +85,7 @@ struct ClcGroup : public MZeroedObject LIST<ClcContact> cl;
int groupId;
- bool bExpanded, bHideOffline;
+ bool bExpanded, bHideOffline, bShowOffline;
ClcGroup *parent;
int scanIndex;
int totalMembers;
|
