diff options
Diffstat (limited to 'protocols/FacebookRM/src')
| -rw-r--r-- | protocols/FacebookRM/src/chat.cpp | 4 | ||||
| -rw-r--r-- | protocols/FacebookRM/src/contacts.cpp | 2 | ||||
| -rw-r--r-- | protocols/FacebookRM/src/main.cpp | 2 | ||||
| -rw-r--r-- | protocols/FacebookRM/src/process.cpp | 2 | 
4 files changed, 5 insertions, 5 deletions
diff --git a/protocols/FacebookRM/src/chat.cpp b/protocols/FacebookRM/src/chat.cpp index f19990da10..c1e2f6d71a 100644 --- a/protocols/FacebookRM/src/chat.cpp +++ b/protocols/FacebookRM/src/chat.cpp @@ -71,7 +71,7 @@ int FacebookProto::OnGCEvent(WPARAM, LPARAM lParam)  		return 0;  	// Ignore for special chatrooms -	if (!_tcscmp(hook->pDest->ptszID, _T(FACEBOOK_NOTIFICATIONS_CHATROOM))) +	if (!mir_tstrcmp(hook->pDest->ptszID, _T(FACEBOOK_NOTIFICATIONS_CHATROOM)))  		return 0;  	switch (hook->pDest->iType) @@ -397,7 +397,7 @@ bool FacebookProto::IsSpecialChatRoom(MCONTACT hContact) {  		return false;  	ptrT idT(getTStringA(hContact, "ChatRoomID")); -	return idT && !_tcscmp(idT, _T(FACEBOOK_NOTIFICATIONS_CHATROOM)); +	return idT && !mir_tstrcmp(idT, _T(FACEBOOK_NOTIFICATIONS_CHATROOM));  }  void FacebookProto::PrepareNotificationsChatRoom() { diff --git a/protocols/FacebookRM/src/contacts.cpp b/protocols/FacebookRM/src/contacts.cpp index e4cd53e091..71f9b5b36e 100644 --- a/protocols/FacebookRM/src/contacts.cpp +++ b/protocols/FacebookRM/src/contacts.cpp @@ -98,7 +98,7 @@ MCONTACT FacebookProto::ChatIDToHContact(const std::tstring &chat_id)  			continue;  		ptrT id(getTStringA(hContact, "ChatRoomID")); -		if (id && !_tcscmp(id, chat_id.c_str())) { +		if (id && !mir_tstrcmp(id, chat_id.c_str())) {  			facy.chat_id_to_hcontact.insert(std::make_pair(chat_id, hContact));  			return hContact;  		} diff --git a/protocols/FacebookRM/src/main.cpp b/protocols/FacebookRM/src/main.cpp index b2bd15f4b9..e55450b78c 100644 --- a/protocols/FacebookRM/src/main.cpp +++ b/protocols/FacebookRM/src/main.cpp @@ -49,7 +49,7 @@ PLUGININFOEX pluginInfo = {  // Protocol instances
  static int compare_protos(const FacebookProto *p1, const FacebookProto *p2)
  {
 -	return _tcscmp(p1->m_tszUserName, p2->m_tszUserName);
 +	return mir_tstrcmp(p1->m_tszUserName, p2->m_tszUserName);
  }
  OBJLIST<FacebookProto> g_Instances(1, compare_protos);
 diff --git a/protocols/FacebookRM/src/process.cpp b/protocols/FacebookRM/src/process.cpp index c5687cc899..af61679db4 100644 --- a/protocols/FacebookRM/src/process.cpp +++ b/protocols/FacebookRM/src/process.cpp @@ -84,7 +84,7 @@ void FacebookProto::ProcessBuddyList(void*)  				fbu->handle = AddToContactList(fbu, CONTACT_FRIEND);  			ptrT client(getTStringA(fbu->handle, "MirVer")); -			if (!client || _tcscmp(client, fbu->getMirVer())) +			if (!client || mir_tstrcmp(client, fbu->getMirVer()))  				setTString(fbu->handle, "MirVer", fbu->getMirVer());  			if (getDword(fbu->handle, "IdleTS", 0) != fbu->last_active) {  | 
