Commit a468b842 authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov Committed by Alexander.Trofimov

Fixed issue #31690

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68415 954022d7-b5bf-4e40-9824-e11837661b57
parent 6124b106
...@@ -15,7 +15,8 @@ var cElementType = { ...@@ -15,7 +15,8 @@ var cElementType = {
array : 11, array : 11,
cell3D : 12, cell3D : 12,
cellsRange3D: 13, cellsRange3D: 13,
table : 14 table : 14,
name3D : 15
}, },
/** @enum */ /** @enum */
cErrorType = { cErrorType = {
...@@ -1759,7 +1760,7 @@ cStrucTable.prototype.buildLocalTableString = function (reservedColumn,local) { ...@@ -1759,7 +1760,7 @@ cStrucTable.prototype.buildLocalTableString = function (reservedColumn,local) {
/** @constructor */ /** @constructor */
function cName3D( val, wsFrom, wb, ws ) { function cName3D( val, wsFrom, wb, ws ) {
this.constructor.call( this, wsFrom + "!" + val, cElementType.name ); this.constructor.call( this, wsFrom + "!" + val, cElementType.name3D );
this.regSpace = /\$/g; this.regSpace = /\$/g;
this.wb = wb; this.wb = wb;
this.ws = ws; this.ws = ws;
......
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