core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java
branchC3_BUILDER_WORK
changeset 1820 5c955fcfdc3d
parent 1739 5f659a59d04a
child 1931 d7c1f804f316
--- a/core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java	Thu Aug 12 10:37:00 2010 -0500
+++ b/core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java	Thu Aug 12 15:56:37 2010 -0500
@@ -39,7 +39,7 @@
 @SuppressWarnings("restriction")
 public class BuildTargetTreeNode extends TreeNode {
 
-	public static final String SDK_NODE_ERROR_EPOCROOT_INVALID = " -- SDK location does not exist! Check Symbian SDKs!"; //$NON-NLS
+	public static final String SDK_NODE_ERROR_EPOCROOT_INVALID = " SDK location does not exist! Check Symbian SDKs!"; //$NON-NLS
 
 	/**
 	 * Constructs a new tree node for the given SDK
@@ -94,7 +94,7 @@
 		ISymbianSDK value = (ISymbianSDK) getValue();
 		File f = new File(value.getEPOCROOT());
 		if (!f.exists()){
-			return value.getUniqueId() + SDK_NODE_ERROR_EPOCROOT_INVALID;
+			return value.getUniqueId() + " (" + f.getAbsolutePath() + ") " + SDK_NODE_ERROR_EPOCROOT_INVALID;
 		}
 		return value.getUniqueId();
 	}