diff options
Diffstat (limited to 'plugins/BuddyExpectator/src')
| -rw-r--r-- | plugins/BuddyExpectator/src/BuddyExpectator.cpp | 10 | ||||
| -rw-r--r-- | plugins/BuddyExpectator/src/stdafx.h | 1 | 
2 files changed, 6 insertions, 5 deletions
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 <newpluginapi.h>
  #include <m_skin.h>
  #include <m_clistint.h>
 +#include <m_contacts.h>
  #include <m_database.h>
  #include <m_langpack.h>
  #include <m_options.h>
  | 
