fixed few compilation issues

This commit is contained in:
Jindra Pet��k
2013-03-24 11:50:02 +01:00
parent 3ce5ac886e
commit da1793a6af
4 changed files with 8 additions and 4 deletions
@@ -17,6 +17,7 @@
package com.jpexs.decompiler.flash.action.swf4;
import com.jpexs.decompiler.flash.action.Action;
import com.jpexs.decompiler.flash.action.treemodel.ConstantPool;
import com.jpexs.decompiler.flash.action.treemodel.SetVariableTreeItem;
import com.jpexs.decompiler.flash.graph.GraphTargetItem;
import com.jpexs.decompiler.flash.helpers.Highlighting;
@@ -40,7 +41,7 @@ public class ActionSetVariable extends Action {
GraphTargetItem value = stack.pop();
GraphTargetItem name = stack.pop();
SetVariableTreeItem svt = new SetVariableTreeItem(this, name, value);
variables.put(Highlighting.stripHilights(name.toStringNoQuotes(null)), value);
variables.put(Highlighting.stripHilights(name.toStringNoQuotes((ConstantPool)null)), value);
output.add(svt);
}
}