From 68d3fd47bb9b75e65859d14199ffee01f16ac9a7 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 10 Feb 2014 20:47:51 +0000 Subject: HCONTACT is not needed anymore git-svn-id: http://svn.miranda-ng.org/main/trunk@8086 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/MSN/src/msn_links.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'protocols/MSN/src/msn_links.cpp') diff --git a/protocols/MSN/src/msn_links.cpp b/protocols/MSN/src/msn_links.cpp index e41bf5becb..e058d9194b 100644 --- a/protocols/MSN/src/msn_links.cpp +++ b/protocols/MSN/src/msn_links.cpp @@ -27,7 +27,7 @@ along with this program. If not, see . static HANDLE hServiceParseLink; -static HCONTACT GetContact(TCHAR *arg, TCHAR **pemail, CMsnProto *proto) +static MCONTACT GetContact(TCHAR *arg, TCHAR **pemail, CMsnProto *proto) { TCHAR* email = NULL; do @@ -51,7 +51,7 @@ static HCONTACT GetContact(TCHAR *arg, TCHAR **pemail, CMsnProto *proto) return NULL; } if (pemail) *pemail = email; - HCONTACT hContact = proto->MSN_HContactFromEmail(UTF8(email), NULL, true, true); + MCONTACT hContact = proto->MSN_HContactFromEmail(UTF8(email), NULL, true, true); return hContact; } @@ -96,7 +96,7 @@ static INT_PTR ServiceParseMsnimLink(WPARAM, LPARAM lParam) arg += 4; TCHAR *email; - HCONTACT hContact = GetContact(arg, &email, proto); + MCONTACT hContact = GetContact(arg, &email, proto); if (email == NULL) return 1; /* does not yet check if email is current user */ @@ -121,7 +121,7 @@ static INT_PTR ServiceParseMsnimLink(WPARAM, LPARAM lParam) { arg += 5; - HCONTACT hContact = GetContact(arg, NULL, proto); + MCONTACT hContact = GetContact(arg, NULL, proto); if (hContact != NULL) { @@ -133,7 +133,7 @@ static INT_PTR ServiceParseMsnimLink(WPARAM, LPARAM lParam) { arg += 6; - HCONTACT hContact = GetContact(arg, NULL, proto); + MCONTACT hContact = GetContact(arg, NULL, proto); if (hContact != NULL) { @@ -145,7 +145,7 @@ static INT_PTR ServiceParseMsnimLink(WPARAM, LPARAM lParam) { arg += 6; - HCONTACT hContact = GetContact(arg, NULL, proto); + MCONTACT hContact = GetContact(arg, NULL, proto); if (hContact != NULL) { -- cgit v1.2.3