diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-27 21:32:12 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-27 21:32:12 +0300 |
commit | 426e2f9755a14023223e2e3ebfa8e78f6e8677a8 (patch) | |
tree | ae387e1079fe63cea4d928a0e2564f218836d548 /include | |
parent | ea45fcc6216051c084a762a8fd2d170e095bb1ba (diff) |
fix for a function name:
Clist_IsHidden => Contact_IsHidden
Clist_HideContact => Contact_Hide
Diffstat (limited to 'include')
-rw-r--r-- | include/m_clist.h | 6 | ||||
-rw-r--r-- | include/m_contacts.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index c4b74e8397..3142a497ed 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -489,12 +489,6 @@ EXTERN_C MIR_APP_DLL(int) Clist_ContactCompare(MCONTACT hContact1, MCONTACT hCon EXTERN_C MIR_APP_DLL(wchar_t*) Clist_GetContactDisplayName(MCONTACT hContact, int mode = 0);
/////////////////////////////////////////////////////////////////////////////////////////
-// gets / sets hidden status for a contact
-
-EXTERN_C MIR_APP_DLL(bool) Clist_IsHidden(MCONTACT hContact);
-EXTERN_C MIR_APP_DLL(void) Clist_HideContact(MCONTACT hContact, bool bHidden = true);
-
-/////////////////////////////////////////////////////////////////////////////////////////
// DRAG-N-DROP SUPPORT
/////////////////////////////////////////////////////////////////////////////////////////
// a contact is being dragged outside the main window
diff --git a/include/m_contacts.h b/include/m_contacts.h index 37c4213618..9459beccb7 100644 --- a/include/m_contacts.h +++ b/include/m_contacts.h @@ -82,6 +82,12 @@ EXTERN_C MIR_APP_DLL(wchar_t*) Contact_GetInfo( EXTERN_C MIR_APP_DLL(int) Contact_GetStatus(MCONTACT hContact);
/////////////////////////////////////////////////////////////////////////////////////////
+// gets / sets hidden status for a contact
+
+EXTERN_C MIR_APP_DLL(bool) Contact_IsHidden(MCONTACT hContact);
+EXTERN_C MIR_APP_DLL(void) Contact_Hide(MCONTACT hContact, bool bHidden = true);
+
+/////////////////////////////////////////////////////////////////////////////////////////
// Add contact's dialog
// passing hWnd == NULL will result in a dialog that is created modeless
|