From 426e2f9755a14023223e2e3ebfa8e78f6e8677a8 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 27 Sep 2019 21:32:12 +0300 Subject: fix for a function name: Clist_IsHidden => Contact_IsHidden Clist_HideContact => Contact_Hide --- plugins/BuddyExpectator/src/BuddyExpectator.cpp | 10 +++++----- plugins/BuddyExpectator/src/stdafx.h | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) (limited to 'plugins/BuddyExpectator/src') diff --git a/plugins/BuddyExpectator/src/BuddyExpectator.cpp b/plugins/BuddyExpectator/src/BuddyExpectator.cpp index 82dd5204fb..c5f236747c 100644 --- a/plugins/BuddyExpectator/src/BuddyExpectator.cpp +++ b/plugins/BuddyExpectator/src/BuddyExpectator.cpp @@ -100,7 +100,7 @@ LRESULT CALLBACK HidePopupDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM switch (message) { case WM_COMMAND: if (HIWORD(wParam) == STN_CLICKED) { - Clist_HideContact(PUGetContact(hWnd)); + Contact_Hide(PUGetContact(hWnd)); PUDeletePopup(hWnd); } break; @@ -112,7 +112,7 @@ LRESULT CALLBACK HidePopupDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM case UM_POPUPACTION: if (wParam == 2) { - Clist_HideContact(PUGetContact(hWnd)); + Contact_Hide(PUGetContact(hWnd)); PUDeletePopup(hWnd); } if (wParam == 3) { @@ -223,7 +223,7 @@ bool isContactGoneFor(MCONTACT hContact, int days) if (options.hideInactive) if (daysSinceMessage >= options.iSilencePeriod) - if (!Clist_IsHidden(hContact) && !g_plugin.getByte(hContact, "NeverHide", 0)) { + if (!Contact_IsHidden(hContact) && !g_plugin.getByte(hContact, "NeverHide", 0)) { POPUPDATAW ppd; ppd.lchContact = hContact; ppd.lchIcon = IcoLib_GetIcon("enabled_icon"); @@ -252,7 +252,7 @@ bool isContactGoneFor(MCONTACT hContact, int days) void ReturnNotify(MCONTACT hContact, wchar_t *message) { - if (db_get_b(hContact, "CList", "NotOnList", 0) == 1 || Clist_IsHidden(hContact)) + if (db_get_b(hContact, "CList", "NotOnList", 0) == 1 || Contact_IsHidden(hContact)) return; Skin_PlaySound("buddyExpectatorReturn"); @@ -291,7 +291,7 @@ void ReturnNotify(MCONTACT hContact, wchar_t *message) void GoneNotify(MCONTACT hContact, wchar_t *message) { - if (db_get_b(hContact, "CList", "NotOnList", 0) == 1 || Clist_IsHidden(hContact)) + if (db_get_b(hContact, "CList", "NotOnList", 0) == 1 || Contact_IsHidden(hContact)) return; if (options.iShowPopup2 > 0) { diff --git a/plugins/BuddyExpectator/src/stdafx.h b/plugins/BuddyExpectator/src/stdafx.h index 4604eb43d1..32063d5756 100644 --- a/plugins/BuddyExpectator/src/stdafx.h +++ b/plugins/BuddyExpectator/src/stdafx.h @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include -- cgit v1.2.3