diff options
author | George Hazan <ghazan@miranda.im> | 2020-03-30 16:52:28 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-03-30 16:52:28 +0300 |
commit | 64303ec8f7d8fd491247a2c06ee133e4f5f3c942 (patch) | |
tree | fd57755518819e33a7ed03c8fef389396c0d61df /include/m_clistint.h | |
parent | 1043ccf5d184151af43a417cd6e6c1a800b678dd (diff) |
Contact lists:
- all common options moved to the Clist namespace;
- fixes #2281 (Add option to not clear "NotOnList" group at start);
Diffstat (limited to 'include/m_clistint.h')
-rw-r--r-- | include/m_clistint.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/m_clistint.h b/include/m_clistint.h index a547640439..7135d8eebe 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -34,6 +34,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <m_system.h>
#include <m_protocols.h>
#include <m_clc.h>
+#include <m_gui.h>
#define HCONTACT_ISGROUP 0x80000000
#define HCONTACT_ISINFO 0xFFFF0000
@@ -442,4 +443,14 @@ EXTERN_C MIR_APP_DLL(CLIST_INTERFACE*) Clist_GetInterface(void); extern MIR_APP_EXPORT CLIST_INTERFACE g_clistApi;
+namespace Clist
+{
+ extern MIR_APP_EXPORT CMOption<bool>
+ HideOffline,
+ UseGroups,
+ HideEmptyGroups,
+ ConfirmDelete,
+ RemoveTempContacts;
+};
+
#endif // M_CLISTINT_H__
|