From: jihye424.kim Date: Mon, 23 Nov 2015 08:53:35 +0000 (+0900) Subject: vm property: copy child base image path when clone X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=56dc210806505cf90373d5131c957a2d7938cf5b;p=sdk%2Femulator%2Femulator-manager.git vm property: copy child base image path when clone - copy child base image and swap image path when clone 'VMPropertyValue' Change-Id: I04eda3083e67e882c92515e5b465e83e63d8c47e Signed-off-by: jihye424.kim --- diff --git a/src/org/tizen/emulator/manager/vms/VMPropertyValue.java b/src/org/tizen/emulator/manager/vms/VMPropertyValue.java index 0a8112f..ca8b5d2 100644 --- a/src/org/tizen/emulator/manager/vms/VMPropertyValue.java +++ b/src/org/tizen/emulator/manager/vms/VMPropertyValue.java @@ -188,6 +188,8 @@ public class VMPropertyValue implements Cloneable { dest.vmsName = this.vmsName; dest.baseImagePath = this.baseImagePath; + dest.childImagePath = this.childImagePath; + dest.swapImagePath = this.swapImagePath; dest.resolution = this.resolution; dest.dpi = this.dpi;