summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDuyoung Jang <duyoung.jang@samsung.com>2013-03-11 19:54:32 +0900
committerDuyoung Jang <duyoung.jang@samsung.com>2013-03-11 19:54:32 +0900
commite4c98f605bd9529d15d476fa303ec3a98de5efc0 (patch)
treef612d403459dc99c7380535a3e36691855cd17df /src
parent99c26a9a09733fad632b2efa099e76faaa0441ef (diff)
downloadinstaller-e4c98f605bd9529d15d476fa303ec3a98de5efc0.tar.gz
installer-e4c98f605bd9529d15d476fa303ec3a98de5efc0.tar.bz2
installer-e4c98f605bd9529d15d476fa303ec3a98de5efc0.zip
Change tag name
Change-Id: I8b707c12fd87cbeaea1c43a69b2615b7e6d31df6 Signed-off-by: Duyoung Jang <duyoung.jang@samsung.com>
Diffstat (limited to 'src')
-rwxr-xr-xsrc/Context/InstallationContextData.h2
-rwxr-xr-xsrc/XmlHandler/ManifestGenerator.cpp8
-rwxr-xr-xsrc/XmlHandler/ManifestHandler.cpp6
3 files changed, 8 insertions, 8 deletions
diff --git a/src/Context/InstallationContextData.h b/src/Context/InstallationContextData.h
index 32491b3..b780bd8 100755
--- a/src/Context/InstallationContextData.h
+++ b/src/Context/InstallationContextData.h
@@ -256,7 +256,7 @@ public:
Tizen::Base::String __notificationIcon;
Tizen::Base::String __type;
Tizen::Base::String __subModeAppName;
- Tizen::Base::String __recent;
+ Tizen::Base::String __launchingHistoryVisible;
Tizen::Base::Collection::IListT<Tizen::Base::String*>* __pCategoryList;
Tizen::Base::Collection::IListT<AccountData*>* __pAccountDataList;
diff --git a/src/XmlHandler/ManifestGenerator.cpp b/src/XmlHandler/ManifestGenerator.cpp
index 6a7b0d1..c79de8e 100755
--- a/src/XmlHandler/ManifestGenerator.cpp
+++ b/src/XmlHandler/ManifestGenerator.cpp
@@ -481,7 +481,7 @@ ManifestGenerator::WriteApp(int index, AppData* pAppData)
if (pAppData->__type == L"UiApp")
{
- if (pAppData->__recent.IsEmpty() == true)
+ if (pAppData->__launchingHistoryVisible.IsEmpty() == true)
{
if (pAppData->__mainmenuVisible == true)
{
@@ -494,9 +494,9 @@ ManifestGenerator::WriteApp(int index, AppData* pAppData)
}
else
{
- String recent;
- pAppData->__recent.ToLowerCase(recent);
- taskmanage = recent;
+ String history;
+ pAppData->__launchingHistoryVisible.ToLowerCase(history);
+ taskmanage = history;
}
if (pAppData->__mainmenuVisible == true)
diff --git a/src/XmlHandler/ManifestHandler.cpp b/src/XmlHandler/ManifestHandler.cpp
index 1ef1f59..3e03fbf 100755
--- a/src/XmlHandler/ManifestHandler.cpp
+++ b/src/XmlHandler/ManifestHandler.cpp
@@ -1237,11 +1237,11 @@ ManifestHandler::ParseAppAttribute(XmlAttribute* pAttr, bool isUiApp)
__pAppData->__main = L"False";
}
- char* pRecent = pAttr->Find("Recent");
+ char* pRecent = pAttr->Find("LaunchingHistoryVisible");
if (pRecent)
{
- AppLog(" - Recent=%s", pRecent);
- __pAppData->__recent = pRecent;
+ AppLog(" - LaunchingHistoryVisible=%s", pRecent);
+ __pAppData->__launchingHistoryVisible = pRecent;
}
char* pHwAcceleration = pAttr->Find("HwAcceleration");