From 4effc756871e173586353c81f408cb6d66cf6399 Mon Sep 17 00:00:00 2001 From: "ahram.suh" Date: Mon, 24 Jun 2013 14:50:56 +0900 Subject: [PATCH] Changed temparary saving folder for mobile print Change-Id: Iee91bcc76889cede54191173f19fd128f93e3f10 --- src/IntMainForm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IntMainForm.cpp b/src/IntMainForm.cpp index 5cf43d7..60705a3 100644 --- a/src/IntMainForm.cpp +++ b/src/IntMainForm.cpp @@ -1649,7 +1649,7 @@ MainForm::OnActionPerformed(const Tizen::Ui::Control& source, int actionId) break; case IDA_PRINT_CLICKED: { - r = __pWebViewer->SavePageAsPdf(UiApp::GetInstance()->GetAppRootPath()+"//data//test.pdf"); + r = __pWebViewer->SavePageAsPdf(UiApp::GetInstance()->GetAppRootPath()+"//shared//data//test.pdf"); AppLog("SavePageAsPdf result %s",GetErrorMessage(r)); AppLog("RequestPrint called!"); @@ -1668,7 +1668,7 @@ MainForm::OnActionPerformed(const Tizen::Ui::Control& source, int actionId) String fileCount = L"service_print_files_count"; String countVal = L"1"; String fileFolder= L"service_print_files_folder_name"; - String folderVal = UiApp::GetInstance()->GetAppRootPath()+"//data"; + String folderVal = UiApp::GetInstance()->GetAppRootPath()+"//shared//data"; map.Add(&fileCount, &countVal); map.Add(&fileFolder, &folderVal); -- 2.7.4