diff options
author | George Hazan <george.hazan@gmail.com> | 2016-09-01 12:48:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-09-01 12:48:54 +0000 |
commit | 11ab7716e9d48c7505fbcf4fe1deba33b494cdc1 (patch) | |
tree | 795bb05caa502ed8e1f4fc7064563e112b077197 /include | |
parent | ecfe7288fee11443d9a0f48ca38daa2aabf955c5 (diff) |
- MS_CLIST_SETHIDEOFFLINE replaced with pcli->pfnSetHideOffline();
- MS_CLIST_TOGGLEHIDEOFFLINE added to cover the only case with service call;
git-svn-id: http://svn.miranda-ng.org/main/trunk@17237 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_clist.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index 8b54c0c4b0..182682b359 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -337,6 +337,12 @@ typedef struct { // toggles the hidden users display mode
// wParam = lParam = 0
// returns new hidden users mode
+#define MS_CLIST_TOGGLEHIDEOFFLINE "CList/ToggleHideOffline"
+
+/////////////////////////////////////////////////////////////////////////////////////////
+// toggles the hidden users display mode
+// wParam = lParam = 0
+// returns new hidden users mode
#define MS_CLIST_TOGGLEHIDEOFFLINEROOT "CList/ToggleHideOfflineRoot"
/////////////////////////////////////////////////////////////////////////////////////////
@@ -441,15 +447,6 @@ EXTERN_C MIR_APP_DLL(HMENU) Clist_GroupBuildMenu(void); EXTERN_C MIR_APP_DLL(void) Clist_EndRebuild(void);
/////////////////////////////////////////////////////////////////////////////////////////
-// changes the 'hide offline contacts' flag and call CLUI
-// wParam = newValue
-// lParam = 0
-// returns 0 on success, nonzero on failure
-// newValue is 0 to show all contacts, 1 to only show online contacts
-// or -1 to toggle the value
-#define MS_CLIST_SETHIDEOFFLINE "CList/SetHideOffline"
-
-/////////////////////////////////////////////////////////////////////////////////////////
// do the message processing associated with double clicking a contact
// wParam = (MCONTACT)hContact
// lParam = 0
|