Commit e5166764 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

delete convertFormula

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57135 954022d7-b5bf-4e40-9824-e11837661b57
parent e88e4995
......@@ -22,20 +22,6 @@ function isNullOrEmptyString(str) {
return (str == undefined) || (str == null) || (str == "");
}
function convertFormula(formula, ws) {
var range = null;
if (formula && ws) {
var result = parserHelp.parse3DRef(formula);
if (null !== result) {
ws = ws.model.workbook.getWorksheetByName(result.sheet);
if (ws)
range = ws.getRange2(result.range);
}
}
return range;
}
function DrawingBounds(minX, maxX, minY, maxY)
{
this.minX = minX;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment