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
equal deleted inserted replaced
1553:a0d518fc91ea 1568:508bfdb3a934
    73 					ISymbianBuildContext context = (ISymbianBuildContext)getValue();
    73 					ISymbianBuildContext context = (ISymbianBuildContext)getValue();
    74 					String sdkId = context.getSDK().getUniqueId();
    74 					String sdkId = context.getSDK().getUniqueId();
    75 					String newDisplayString = context.getDisplayString().replace("[" + sdkId + "]", "");
    75 					String newDisplayString = context.getDisplayString().replace("[" + sdkId + "]", "");
    76 					if (context instanceof ISBSv2BuildContext){
    76 					if (context instanceof ISBSv2BuildContext){
    77 						ISBSv2BuildContext v2Context = (ISBSv2BuildContext)context;
    77 						ISBSv2BuildContext v2Context = (ISBSv2BuildContext)context;
    78 						if (v2Context.getConfigurationErrorMessage() != null && v2Context.getConfigurationErrorMessage().length() > 0){
    78 						if (v2Context.getConfigQueryData().getConfigurationErrorMessage() != null && 
    79 							newDisplayString += " ERROR: " + v2Context.getConfigurationErrorMessage();
    79 							v2Context.getConfigQueryData().getConfigurationErrorMessage().length() > 0){
       
    80 							newDisplayString += " ERROR: " + v2Context.getConfigQueryData().getConfigurationErrorMessage();
    80 						}
    81 						}
    81 					} 
    82 					} 
    82 					return newDisplayString;
    83 					return newDisplayString;
    83 				}
    84 				}
    84 			};
    85 			};