remove unnecessary parameter for MsgMgrSoundPlayVibration() 03/69703/1
authorKyeonghun Lee <kh9090.lee@samsung.com>
Mon, 16 May 2016 10:51:30 +0000 (19:51 +0900)
committerKyeonghun Lee <kh9090.lee@samsung.com>
Mon, 16 May 2016 10:51:30 +0000 (19:51 +0900)
Change-Id: Ifda61fff376c262da0bc7d85c051cc2e836e8258
Signed-off-by: Kyeonghun Lee <kh9090.lee@samsung.com>
manager/src/msg-manager-sound.cpp

index e32cbc5..69a7d57 100644 (file)
@@ -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();