diff options
author | George Hazan <ghazan@miranda.im> | 2021-01-22 22:03:31 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-01-22 22:03:31 +0300 |
commit | fb74b51d6642fcf4c34a5594873eec152cc48b05 (patch) | |
tree | 352191019a251691d38eb424cf49a7e076dfd951 /include | |
parent | dc907e37f5baf3f590700394d4e779363c0c0a7f (diff) |
further clist options optimization
Diffstat (limited to 'include')
-rw-r--r-- | include/m_clist.h | 2 | ||||
-rw-r--r-- | include/m_clistint.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index d5e3bce218..a27b0ac292 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -538,7 +538,6 @@ EXTERN_C MIR_APP_DLL(int) Clist_TrayNotifyW(const char *szProto, const wchar_t * #define SETTING_CLIENTDRAG_DEFAULT 1
#define SETTING_ONTOP_DEFAULT 1
#define SETTING_MIN2TRAY_DEFAULT 1
-#define SETTING_TRAY1CLICK_DEFAULT (IsWinVer7Plus()?1:0)
#define SETTING_SORTBYSTATUS_DEFAULT 0
#define SETTING_SORTBYPROTO_DEFAULT 0
#define SETTING_TRANSPARENT_DEFAULT 0
@@ -548,7 +547,6 @@ EXTERN_C MIR_APP_DLL(int) Clist_TrayNotifyW(const char *szProto, const wchar_t * #define SETTING_HIDETIME_DEFAULT 30
#define SETTING_CYCLETIME_DEFAULT 4
#define SETTING_TRAYICON_DEFAULT SETTING_TRAYICON_SINGLE
-#define SETTING_ALWAYSSTATUS_DEFAULT 0
#define SETTING_ALWAYSMULTI_DEFAULT 0
#define SETTING_TRAYICON_SINGLE 0
diff --git a/include/m_clistint.h b/include/m_clistint.h index e4e4f79c43..103a27f4a4 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -444,12 +444,14 @@ extern MIR_APP_EXPORT CLIST_INTERFACE g_clistApi; namespace Clist
{
- extern MIR_APP_EXPORT CMOption<bool>
+ extern MIR_APP_EXPORT CMOption<bool>
HideOffline,
UseGroups,
FilterSearch,
- HideEmptyGroups,
- ConfirmDelete;
+ HideEmptyGroups,
+ ConfirmDelete,
+ Tray1Click,
+ TrayAlwaysStatus;
extern MIR_APP_EXPORT CMOption<DWORD>
OfflineModes;
|