From ad3a5fad9036d4311f3460707b5af3b07f829cb0 Mon Sep 17 00:00:00 2001 From: "sung-su.kim" Date: Thu, 11 Jul 2013 22:19:28 +0900 Subject: [PATCH] fixed build break [Issue#] N/A [Problem] N/A [Cause] N/A [Solution] fixed build break [SCMRequest] N/A Change-Id: Ifa33678d87923368903a500a5d74745382c0fa23 --- src/jobs/widget_install/task_manifest_file.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jobs/widget_install/task_manifest_file.cpp b/src/jobs/widget_install/task_manifest_file.cpp index ff3e8ac..b4eb7db 100755 --- a/src/jobs/widget_install/task_manifest_file.cpp +++ b/src/jobs/widget_install/task_manifest_file.cpp @@ -330,7 +330,7 @@ void TaskManifestFile::stepCopyLiveboxFiles() targetFile << (**boxIt).m_liveboxId << "."; targetFile << DPL::ToUTF8String((*sizeIt).m_size) << "." << DEFAULT_PREVIEW_NAME; - DynamicBoxFileCopy(sourceFile.str(), targetFile.str(), preview); + DynamicBoxFileCopy(sourceFile.str(), targetFile.str()); // clear stream objects sourceFile.str(""); @@ -346,7 +346,7 @@ void TaskManifestFile::stepCopyLiveboxFiles() targetFile << m_context.locations->getSharedDataDir() << "/"; targetFile << (**boxIt).m_liveboxId << "." << DEFAULT_ICON_NAME; - DynamicBoxFileCopy(sourceFile.str(), targetFile.str(), icon); + DynamicBoxFileCopy(sourceFile.str(), targetFile.str()); // clear stream objects sourceFile.str(""); -- 2.7.4