From 8bfdf74764a0c2afd32761b6de85b4d4f512a44d Mon Sep 17 00:00:00 2001 From: "minkee.lee" Date: Thu, 16 Oct 2014 21:32:37 +0900 Subject: [PATCH] Plugin: Modification by "Add base-image(platform) information to Custom VM." - Function prototype is changed. Change-Id: I42c8a65525bb0a0fa1efc1baade869a95aafa425 Signed-off-by: minkee.lee --- .../org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java | 2 +- .../org/tizen/emulator/manager/wearable/ui/detail/ItemListFactory.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java b/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java index bae73ce..e8d0eca 100644 --- a/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java +++ b/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java @@ -74,7 +74,7 @@ public class ItemListFactory extends CommonItemListFactory { if (template == null) { makeItemListOld(itemList); // TODO old } else { - makePropertyItemList(itemList, template.getPropertyList()); + makePropertyItemList(itemList, template.getPropertyList(), template.getProfile(), true); makeDeviceItemList(itemList, template.getDeviceList()); } diff --git a/plugin-project/wearable-plugin/src/org/tizen/emulator/manager/wearable/ui/detail/ItemListFactory.java b/plugin-project/wearable-plugin/src/org/tizen/emulator/manager/wearable/ui/detail/ItemListFactory.java index dfadb46..bfa0dd1 100644 --- a/plugin-project/wearable-plugin/src/org/tizen/emulator/manager/wearable/ui/detail/ItemListFactory.java +++ b/plugin-project/wearable-plugin/src/org/tizen/emulator/manager/wearable/ui/detail/ItemListFactory.java @@ -56,7 +56,7 @@ public class ItemListFactory extends CommonItemListFactory { if (template == null) { makeItemListOld(itemList); // TODO old } else { - makePropertyItemList(itemList, template.getPropertyList()); + makePropertyItemList(itemList, template.getPropertyList(), template.getProfile(), true); makeDeviceItemList(itemList, template.getDeviceList()); } -- 2.7.4