AS3 XML fix, jump trait fix

This commit is contained in:
Jindra Pet��k
2013-01-26 20:34:47 +01:00
parent bb80f59b71
commit 11713e6a62
3 changed files with 2 additions and 5 deletions
@@ -46,7 +46,7 @@ public class ConstructPropTreeItem extends TreeItem {
String objstr = object.toString(constants, localRegNames, fullyQualifiedNames);
if (!objstr.equals("")) {
objstr += ".";
}
}
return hilight("new ") + objstr + propertyName.toString(constants, localRegNames, fullyQualifiedNames) + hilight("(") + argStr + hilight(")");
}
@@ -45,7 +45,6 @@ public class ConstructTreeItem extends TreeItem {
return object.toString(constants, localRegNames, fullyQualifiedNames);
}
String obStr = object.toString(constants, localRegNames, fullyQualifiedNames);
obStr = "(" + obStr + ")";
return hilight("new ") + obStr + hilight("(") + argStr + hilight(")");
}
@@ -218,9 +218,7 @@ public class DecompiledEditorPane extends LineMarkedEditorPane implements CaretL
new Timer().schedule(new TimerTask() {
public void run() {
try {
ignoreCarret=true;
setCaretPosition(pos);
ignoreCarret=false;
setCaretPosition(pos);
} catch (IllegalArgumentException iae) {
}
}