From 92b173c3a8553b59077aa2757c9627cb4c73d29e Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 20 Jan 2017 00:11:36 +0300 Subject: Chat_NewSession to return a pointer to a newly created session, not to dig it anymore --- protocols/MRA/src/Mra_functions.cpp | 13 +++---------- protocols/MRA/src/stdafx.h | 2 +- 2 files changed, 4 insertions(+), 11 deletions(-) (limited to 'protocols/MRA') diff --git a/protocols/MRA/src/Mra_functions.cpp b/protocols/MRA/src/Mra_functions.cpp index da0f03fd69..d894a0299f 100644 --- a/protocols/MRA/src/Mra_functions.cpp +++ b/protocols/MRA/src/Mra_functions.cpp @@ -526,16 +526,9 @@ MCONTACT CMraProto::MraHContactFromEmail(const CMStringA &szEmail, BOOL bAddIfNe //not already there: add if (IsEMailChatAgent(szEmail)) { CMStringW wszEMail = szEmail; - if (Chat_NewSession(GCW_CHATROOM, m_szModuleName, wszEMail, wszEMail) == 0) { - BOOL bChatAdded = FALSE; - for (hContact = db_find_first(m_szModuleName); hContact; hContact = db_find_next(hContact, m_szModuleName)) { - if (mraGetStringA(hContact, "ChatRoomID", szEMailLocal)) { - if (szEMailLocal == szEmail) { - bChatAdded = TRUE; - break; - } - } - } + GCSessionInfoBase *si = Chat_NewSession(GCW_CHATROOM, m_szModuleName, wszEMail, wszEMail); + if (si != 0) { + bool bChatAdded = (si->hContact != NULL); if (bChatAdded == FALSE) hContact = NULL; } diff --git a/protocols/MRA/src/stdafx.h b/protocols/MRA/src/stdafx.h index 29dfaa5fe9..6d61cdcc49 100644 --- a/protocols/MRA/src/stdafx.h +++ b/protocols/MRA/src/stdafx.h @@ -45,7 +45,7 @@ #include #include #include -#include +#include #include #include #include -- cgit v1.2.3