From: Byounghui Date: Mon, 16 Sep 2013 08:20:19 +0000 (+0900) Subject: changed text. X-Git-Tag: submit/tizen_2.2/20131107.062046~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e5888a2c05e639e28a238975026ea981d8f2186d;p=framework%2Fosp%2Fmessaging.git changed text. Change-Id: I2e0de45e690dfcc1b5029ca4ee0c97b2f5a2a6db Signed-off-by: Byounghui --- diff --git a/inc/FMsgEmailManager.h b/inc/FMsgEmailManager.h index 5de3f04..41358d3 100755 --- a/inc/FMsgEmailManager.h +++ b/inc/FMsgEmailManager.h @@ -94,7 +94,7 @@ namespace Tizen { namespace Messaging EmailMessage emailMessage; r = emailMessage.SetSubject(L"Subject!!!"); r = emailMessage.SetText(L"Hello, World"); - r = emailMessage.AddAttachment(L"/Home/Res/testfile.dat"); + r = emailMessage.AddAttachment(L"/opt/usr/media/testfile.dat"); // Sends the message, and sets the @c saveToSentbox parameter to true if the message should be saved in the Sentbox; otherwise, set to false. // EmailListener callback is called once the message is completely sent. diff --git a/inc/FMsgMmsManager.h b/inc/FMsgMmsManager.h index 5d3de8b..d21b3ba 100755 --- a/inc/FMsgMmsManager.h +++ b/inc/FMsgMmsManager.h @@ -95,8 +95,8 @@ namespace Tizen { namespace Messaging MmsMessage mmsMessage; r = mmsMessage.SetSubject(L"Subject!!!"); r = mmsMessage.SetText(L"Hello, World"); - r = mmsMessage.AddAttachment(MMS_IMAGE, L"/Home/Res/image.jpg"); - r = mmsMessage.AddAttachment(MMS_IMAGE, L"/Home/Res/audio.wav"); + r = mmsMessage.AddAttachment(MMS_IMAGE, L"/opt/usr/media/image.jpg"); + r = mmsMessage.AddAttachment(MMS_AUDIO, L"/opt/usr/media/audio.wav"); // Sends the message, and set the saveToSentbox parameter to true if the message should be saved in the Sentbox; otherwise, set to false. // MmsListener callback is called once the message has been completely sent.