fixed build break
authorsung-su.kim <sung-su.kim@samsung.com>
Thu, 11 Jul 2013 13:19:28 +0000 (22:19 +0900)
committersung-su.kim <sung-su.kim@samsung.com>
Thu, 11 Jul 2013 13:22:03 +0000 (22:22 +0900)
[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

index ff3e8ac..b4eb7db 100755 (executable)
@@ -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("");