Fixed small issues

This commit is contained in:
Jindra Petk
2013-03-22 22:29:43 +01:00
parent 2b8f708b05
commit c630d885dd
5 changed files with 8 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ public class ActionCallFunction extends Action {
args.add(stack.pop());
}
CallFunctionTreeItem cft = new CallFunctionTreeItem(this, functionName, args);
cft.calculatedFunction = functions.get(Highlighting.stripHilights(functionName.toStringNoQuotes(variables, functions)));
cft.calculatedFunction = functions.get(Highlighting.stripHilights(functionName.toStringNoQuotes(null)));
stack.push(cft);
}
}