From: Jinmook Lim Date: Fri, 17 May 2013 07:22:40 +0000 (+0900) Subject: Fix the smack issue about directory X-Git-Tag: submit/tizen_2.2/20130714.134303~58 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c29c229d2aef89070f0656d6c69e2594b37abc69;p=apps%2Fosp%2FCalendar.git Fix the smack issue about directory Change-Id: I88228d9f8266b062dd11f929d53c30d3a34f9ca7 Signed-off-by: Jinmook Lim --- diff --git a/src/ClCalendarApp.cpp b/src/ClCalendarApp.cpp index 215e90f..163f22d 100644 --- a/src/ClCalendarApp.cpp +++ b/src/ClCalendarApp.cpp @@ -82,6 +82,8 @@ CalendarApp::GetExportVcsFilePath(void) path = nextPath; } + path = Application::GetInstance()->GetAppSharedPath() + path; + return path; } diff --git a/src/ClTypes.cpp b/src/ClTypes.cpp index 2a6ae23..28c66de 100644 --- a/src/ClTypes.cpp +++ b/src/ClTypes.cpp @@ -268,6 +268,6 @@ const wchar_t* VALUE_CALENDAR_MULTIPLE_SELECTION_MODE = L"multiple"; const wchar_t* VALUE_SOCIAL_ITEM_ID = L"item_id"; -const wchar_t* VCS_EXPORT_PATH = L"/tmp/Cl%d%02d%02d%02d%02d%02d.vcs"; +const wchar_t* VCS_EXPORT_PATH = L"data/Cl%d%02d%02d%02d%02d%02d.vcs"; const int MESSAGE_BOX_TIME_OUT = 1500;