Fixed small issues

This commit is contained in:
Jindra Pet��k
2013-03-22 22:29:43 +01:00
parent 2b8f708b05
commit c630d885dd
5 changed files with 8 additions and 6 deletions
@@ -40,7 +40,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(regNames, variables)), value);
variables.put(Highlighting.stripHilights(name.toStringNoQuotes(null)), value);
output.add(svt);
}
}