From: Kyeonghun Lee Date: Mon, 16 May 2016 10:51:30 +0000 (+0900) Subject: remove unnecessary parameter for MsgMgrSoundPlayVibration() X-Git-Tag: submit/tizen/20160527.020259~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F69703%2F1;p=platform%2Fcore%2Fmessaging%2Fmsg-service.git remove unnecessary parameter for MsgMgrSoundPlayVibration() Change-Id: Ifda61fff376c262da0bc7d85c051cc2e836e8258 Signed-off-by: Kyeonghun Lee --- diff --git a/manager/src/msg-manager-sound.cpp b/manager/src/msg-manager-sound.cpp index e32cbc5..69a7d57 100644 --- a/manager/src/msg-manager-sound.cpp +++ b/manager/src/msg-manager-sound.cpp @@ -67,7 +67,7 @@ void MsgMgrStreamStop(); void MsgMgrGetPlayStatus(bool bOnCall, bool bSound, bool bVibration, bool bMsgSound, bool bMsgVibration, bool *bPlaySound, bool *bPlayVibration); void MsgMgrSoundPlayMelody(char *pMsgToneFilePath); -void MsgMgrSoundPlayVibration(char *vibrationPath); +void MsgMgrSoundPlayVibration(); /*================================================================================================== FUNCTION IMPLEMENTATION @@ -385,7 +385,7 @@ void MsgMgrSoundPlayStart(const MSG_MGR_ADDRESS_INFO_S *pAddrInfo, MSG_MGR_SOUND } if (bPlayVibration) - MsgMgrSoundPlayVibration(contactInfo.vibrationPath); + MsgMgrSoundPlayVibration(); if (msg_tone_file_path) delete [] msg_tone_file_path; @@ -564,7 +564,7 @@ void MsgMgrSoundPlayMelody(char *pMsgToneFilePath) } -void MsgMgrSoundPlayVibration(char *vibrationPath) +void MsgMgrSoundPlayVibration() { MSG_MGR_BEGIN();