From f3621c55e4aee160c6cd8ed4bd7c0d857470bcee Mon Sep 17 00:00:00 2001 From: Sangkoo Kim Date: Wed, 20 Jan 2016 20:26:39 +0900 Subject: [PATCH] Apply enum modification of contact-service Change-Id: I709301afe87c3fd84ce932b4bd196c71a2a8dc59 --- utils/MsgContact.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/MsgContact.cpp b/utils/MsgContact.cpp index b6f35ca..22298e9 100755 --- a/utils/MsgContact.cpp +++ b/utils/MsgContact.cpp @@ -726,9 +726,9 @@ void MsgAddPhoneLog(const MSG_MESSAGE_INFO_S *pMsgInfo) if (pMsgInfo->folderId == MSG_INBOX_ID) { if (pMsgInfo->msgType.mainType == MSG_SMS_TYPE) - contacts_record_set_int(plog, _contacts_phone_log.log_type, CONTACTS_PLOG_TYPE_SMS_INCOMMING); + contacts_record_set_int(plog, _contacts_phone_log.log_type, CONTACTS_PLOG_TYPE_SMS_INCOMING); else if (pMsgInfo->msgType.mainType == MSG_MMS_TYPE) - contacts_record_set_int(plog, _contacts_phone_log.log_type, CONTACTS_PLOG_TYPE_MMS_INCOMMING); + contacts_record_set_int(plog, _contacts_phone_log.log_type, CONTACTS_PLOG_TYPE_MMS_INCOMING); } else if (pMsgInfo->folderId == MSG_OUTBOX_ID) { if (pMsgInfo->msgType.mainType == MSG_SMS_TYPE) contacts_record_set_int(plog, _contacts_phone_log.log_type, CONTACTS_PLOG_TYPE_SMS_OUTGOING); -- 2.34.1