core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java
branchC3_BUILDER_WORK
changeset 1568 508bfdb3a934
parent 1491 268b8ede3928
child 1656 d1edeecb12af
--- a/core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java	Mon Jun 28 10:14:24 2010 -0500
+++ b/core/com.nokia.carbide.cpp.sdk.ui/src/com/nokia/carbide/cpp/sdk/ui/shared/BuildTargetTreeNode.java	Thu Jul 01 16:36:11 2010 -0500
@@ -75,8 +75,9 @@
 					String newDisplayString = context.getDisplayString().replace("[" + sdkId + "]", "");
 					if (context instanceof ISBSv2BuildContext){
 						ISBSv2BuildContext v2Context = (ISBSv2BuildContext)context;
-						if (v2Context.getConfigurationErrorMessage() != null && v2Context.getConfigurationErrorMessage().length() > 0){
-							newDisplayString += " ERROR: " + v2Context.getConfigurationErrorMessage();
+						if (v2Context.getConfigQueryData().getConfigurationErrorMessage() != null && 
+							v2Context.getConfigQueryData().getConfigurationErrorMessage().length() > 0){
+							newDisplayString += " ERROR: " + v2Context.getConfigQueryData().getConfigurationErrorMessage();
 						}
 					} 
 					return newDisplayString;