From: Sangkoo Kim Date: Wed, 20 Jan 2016 11:26:39 +0000 (+0900) Subject: Apply enum modification of contact-service X-Git-Tag: submit/tizen/20160120.111308^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f3621c55e4aee160c6cd8ed4bd7c0d857470bcee;p=platform%2Fcore%2Fmessaging%2Fmsg-service.git Apply enum modification of contact-service Change-Id: I709301afe87c3fd84ce932b4bd196c71a2a8dc59 --- 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);