Commit 61dcb8f1 authored by Sergey.Konovalov's avatar Sergey.Konovalov

Bug 17330 - После конвертации документа перед формулой добавляется знак одинарной кавычки

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48493 954022d7-b5bf-4e40-9824-e11837661b57
parent ea0c84ae
...@@ -2916,7 +2916,7 @@ CCellValue.prototype = ...@@ -2916,7 +2916,7 @@ CCellValue.prototype =
else if(this.multiText) else if(this.multiText)
oValueArray = this.multiText; oValueArray = this.multiText;
} }
if(null != xfs && true == xfs.QuotePrefix && CellValueType.String == this.type) if(null != xfs && true == xfs.QuotePrefix && CellValueType.String == this.type && false == this.cell.isFormula())
{ {
if(null != oValueText) if(null != oValueText)
oValueText = "'" + oValueText; oValueText = "'" + oValueText;
......
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