imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/internal/viewers/DebugTab.java
changeset 5 d5efbe6c22e8
parent 2 a91cb670dd8e
child 6 7f60f3388609
--- a/imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/internal/viewers/DebugTab.java	Thu Feb 11 10:40:36 2010 +0200
+++ b/imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/internal/viewers/DebugTab.java	Thu Feb 18 08:20:36 2010 +0200
@@ -18,6 +18,7 @@
 package com.nokia.s60tools.imaker.internal.viewers;
 
 import java.io.File;
+import java.util.ArrayList;
 import java.util.List;
 import java.util.regex.Pattern;
 
@@ -335,9 +336,8 @@
 						}
 					}
 				}
-				String message = Messages.getString("DebugTab.0");
-				entry.setStatusMessage(message.replace("xxx", location.substring(1)));
-				return true;
+				mainTab.addTarget(entry.getLocation().getName());
+				return false;
 			}
 
 			private boolean isError(Object element) {
@@ -463,7 +463,9 @@
 	 */
 	public void addToProperties(ImakerProperties prop) {
 		ImageContent input = getInput();
-		prop.put(IMakerKeyConstants.DEBUGFILES, input.getEntries());			
+		List<IbyEntry> ls = new ArrayList<IbyEntry>();
+		ls.addAll(input.getEntries());
+		prop.put(IMakerKeyConstants.DEBUGFILES, ls);			
 
 	}