summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyeonghun Lee <kh9090.lee@samsung.com>2016-05-16 19:51:30 +0900
committerKyeonghun Lee <kh9090.lee@samsung.com>2016-05-16 19:51:30 +0900
commit02dbea86471e5d9a60c0ec5c5d1c4c778325b98a (patch)
treea8963d60a2461728d94767b17ae6c7148a440ac7
parent84d90f0acfede39b73eef1f70af594f6d762afae (diff)
downloadmsg-service-02dbea86471e5d9a60c0ec5c5d1c4c778325b98a.tar.gz
msg-service-02dbea86471e5d9a60c0ec5c5d1c4c778325b98a.tar.bz2
msg-service-02dbea86471e5d9a60c0ec5c5d1c4c778325b98a.zip
remove unnecessary parameter for MsgMgrSoundPlayVibration()
Change-Id: Ifda61fff376c262da0bc7d85c051cc2e836e8258 Signed-off-by: Kyeonghun Lee <kh9090.lee@samsung.com>
-rw-r--r--manager/src/msg-manager-sound.cpp6
1 files changed, 3 insertions, 3 deletions
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();