diff options
author | Dongeup Ham <dongeup.ham@samsung.com> | 2012-12-26 17:35:41 +0900 |
---|---|---|
committer | Dongeup Ham <dongeup.ham@samsung.com> | 2012-12-26 17:35:41 +0900 |
commit | 7111af69a59fcfebeef7248b96f76c6e8f0a1eac (patch) | |
tree | 64be44a5e9fdef85d82be5bd9267ecd8937c4880 /src/XmlHandler | |
parent | b2fe89eebd0fc9e574402062d687e7ac5ae7ddca (diff) | |
download | installer-7111af69a59fcfebeef7248b96f76c6e8f0a1eac.tar.gz installer-7111af69a59fcfebeef7248b96f76c6e8f0a1eac.tar.bz2 installer-7111af69a59fcfebeef7248b96f76c6e8f0a1eac.zip |
change icons path to shared-res
Change-Id: Ia4648369b5d61b1ae36b2ac6bfe9ffd87d2df201
Signed-off-by: Dongeup Ham <dongeup.ham@samsung.com>
Diffstat (limited to 'src/XmlHandler')
-rwxr-xr-x | src/XmlHandler/ManifestGenerator.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/XmlHandler/ManifestGenerator.cpp b/src/XmlHandler/ManifestGenerator.cpp index db6714c..1c7250c 100755 --- a/src/XmlHandler/ManifestGenerator.cpp +++ b/src/XmlHandler/ManifestGenerator.cpp @@ -277,7 +277,7 @@ ManifestGenerator::WriteLiveboxes(_PackageAppInfoImpl* pAppInfoImpl) const if (pLiveboxInfo->GetIcon().IsEmpty() == false) { String liveboxIcon; - liveboxIcon.Format(1024, L"%ls%ls/%ls", pPackageInfoImpl->GetAppRootPath().GetPointer(), DIR_ICONS, pLiveboxInfo->GetIcon().GetPointer()); + liveboxIcon.Format(1024, L"%ls%ls/%ls", pPackageInfoImpl->GetAppRootPath().GetPointer(), DIR_SHARED_RES, pLiveboxInfo->GetIcon().GetPointer()); __pWriter->StartElement("icon"); __pWriter->WriteString(liveboxIcon); @@ -471,7 +471,7 @@ ManifestGenerator::WriteApp(int index, Tizen::App::Package::_PackageAppInfoImpl* if (pAppInfoImpl->GetMainmenuIcon().IsEmpty() == false) { String iconPath; - iconPath.Format(1024, L"%ls%ls/%ls", pPackageInfoImpl->GetAppRootPath().GetPointer(), DIR_ICONS, pAppInfoImpl->GetMainmenuIcon().GetPointer()); + iconPath.Format(1024, L"%ls%ls/%ls", pPackageInfoImpl->GetAppRootPath().GetPointer(), DIR_SHARED_RES, pAppInfoImpl->GetMainmenuIcon().GetPointer()); __pWriter->StartElement("icon"); __pWriter->WriteString(iconPath); @@ -575,7 +575,7 @@ ManifestGenerator::WriteApp(int index, Tizen::App::Package::_PackageAppInfoImpl* if (pAppInfoImpl->GetMainmenuIcon().IsEmpty() == false) { String iconPath; - iconPath.Format(1024, L"%ls%ls/%ls", pPackageInfoImpl->GetAppRootPath().GetPointer(), DIR_ICONS, pAppInfoImpl->GetMainmenuIcon().GetPointer()); + iconPath.Format(1024, L"%ls%ls/%ls", pPackageInfoImpl->GetAppRootPath().GetPointer(), DIR_SHARED_RES, pAppInfoImpl->GetMainmenuIcon().GetPointer()); __pWriter->StartElement("icon"); __pWriter->WriteString(iconPath); |