Commit 37289cb5 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

delete asc_ from comments functions

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66123 954022d7-b5bf-4e40-9824-e11837661b57
parent 7c15b58a
...@@ -17,10 +17,10 @@ ...@@ -17,10 +17,10 @@
asc['spreadsheet_api'].prototype.asc_addComment = function(oComment) { asc['spreadsheet_api'].prototype.asc_addComment = function(oComment) {
if (oComment.bDocument) { if (oComment.bDocument) {
this.wb.cellCommentator.asc_addComment(oComment); this.wb.cellCommentator.addComment(oComment);
} else { } else {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
ws.cellCommentator.asc_addComment(oComment); ws.cellCommentator.addComment(oComment);
} }
}; };
......
...@@ -2661,51 +2661,51 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS"; ...@@ -2661,51 +2661,51 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
spreadsheet_api.prototype.asc_changeComment = function(id, oComment) { spreadsheet_api.prototype.asc_changeComment = function(id, oComment) {
if (oComment.bDocument) { if (oComment.bDocument) {
this.wb.cellCommentator.asc_changeComment(id, oComment); this.wb.cellCommentator.changeComment(id, oComment);
} else { } else {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
ws.cellCommentator.asc_changeComment(id, oComment); ws.cellCommentator.changeComment(id, oComment);
} }
}; };
spreadsheet_api.prototype.asc_selectComment = function(id) { spreadsheet_api.prototype.asc_selectComment = function(id) {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
ws.cellCommentator.asc_selectComment(id, /*bMove*/true); ws.cellCommentator.selectComment(id, /*bMove*/true);
}; };
spreadsheet_api.prototype.asc_showComment = function(id, bNew) { spreadsheet_api.prototype.asc_showComment = function(id, bNew) {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
ws.cellCommentator.asc_showComment(id, bNew); ws.cellCommentator.showComment(id, bNew);
}; };
spreadsheet_api.prototype.asc_findComment = function(id) { spreadsheet_api.prototype.asc_findComment = function(id) {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
return ws.cellCommentator.asc_findComment(id); return ws.cellCommentator.findComment(id);
}; };
spreadsheet_api.prototype.asc_removeComment = function(id) { spreadsheet_api.prototype.asc_removeComment = function(id) {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
ws.cellCommentator.asc_removeComment(id); ws.cellCommentator.removeComment(id);
this.wb.cellCommentator.asc_removeComment(id); this.wb.cellCommentator.removeComment(id);
}; };
spreadsheet_api.prototype.asc_getComments = function(col, row) { spreadsheet_api.prototype.asc_getComments = function(col, row) {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
return ws.cellCommentator.asc_getComments(col, row); return ws.cellCommentator.getComments(col, row);
}; };
spreadsheet_api.prototype.asc_getDocumentComments = function() { spreadsheet_api.prototype.asc_getDocumentComments = function() {
return this.wb.cellCommentator.asc_getDocumentComments(); return this.wb.cellCommentator.getDocumentComments();
}; };
spreadsheet_api.prototype.asc_showComments = function() { spreadsheet_api.prototype.asc_showComments = function() {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
return ws.cellCommentator.asc_showComments(); return ws.cellCommentator.showComments();
}; };
spreadsheet_api.prototype.asc_hideComments = function() { spreadsheet_api.prototype.asc_hideComments = function() {
var ws = this.wb.getWorksheet(); var ws = this.wb.getWorksheet();
return ws.cellCommentator.asc_hideComments(); return ws.cellCommentator.hideComments();
}; };
spreadsheet_api.prototype.asc_getWorkbookComments = function() { spreadsheet_api.prototype.asc_getWorkbookComments = function() {
......
...@@ -543,7 +543,7 @@ CCellCommentator.prototype.deleteCommentsRange = function(range) { ...@@ -543,7 +543,7 @@ CCellCommentator.prototype.deleteCommentsRange = function(range) {
} }
History.StartTransaction(); History.StartTransaction();
for (i = 0; i < aCommentId.length; i++) { for (i = 0; i < aCommentId.length; i++) {
this.asc_removeComment(aCommentId[i]); this.removeComment(aCommentId[i]);
} }
History.EndTransaction(); History.EndTransaction();
} }
...@@ -573,7 +573,7 @@ CCellCommentator.prototype.getCommentsXY = function(x, y) { ...@@ -573,7 +573,7 @@ CCellCommentator.prototype.getCommentsXY = function(x, y) {
var findCol = this.worksheet._findColUnderCursor(this.pxToPt(x), true); var findCol = this.worksheet._findColUnderCursor(this.pxToPt(x), true);
var findRow = this.worksheet._findRowUnderCursor(this.pxToPt(y), true); var findRow = this.worksheet._findRowUnderCursor(this.pxToPt(y), true);
return (findCol && findRow) ? this.asc_getComments(findCol.col, findRow.row) : []; return (findCol && findRow) ? this.getComments(findCol.col, findRow.row) : [];
}; };
CCellCommentator.prototype.drawCommentCells = function() { CCellCommentator.prototype.drawCommentCells = function() {
...@@ -617,10 +617,10 @@ CCellCommentator.prototype.getTextMetrics = function(text, units) { ...@@ -617,10 +617,10 @@ CCellCommentator.prototype.getTextMetrics = function(text, units) {
CCellCommentator.prototype.updateCommentPosition = function() { CCellCommentator.prototype.updateCommentPosition = function() {
if (this.lastSelectedId) { if (this.lastSelectedId) {
var comment = this.asc_findComment(this.lastSelectedId); var comment = this.findComment(this.lastSelectedId);
if (comment) { if (comment) {
var commentList = this.asc_getComments(comment.asc_getCol(), comment.asc_getRow()); var commentList = this.getComments(comment.asc_getCol(), comment.asc_getRow());
if (commentList.length) { if (commentList.length) {
this.drawCommentCells(); this.drawCommentCells();
...@@ -658,12 +658,12 @@ CCellCommentator.prototype.updateCommentsDependencies = function(bInsert, operTy ...@@ -658,12 +658,12 @@ CCellCommentator.prototype.updateCommentsDependencies = function(bInsert, operTy
for (var i = 0; i < aComments.length; i++) { for (var i = 0; i < aComments.length; i++) {
if (aComments[i].bChange) { if (aComments[i].bChange) {
t.bSaveHistory = false; t.bSaveHistory = false;
t.asc_changeComment(aComments[i].comment.asc_getId(), aComments[i].comment, t.changeComment(aComments[i].comment.asc_getId(), aComments[i].comment,
/*bChangeCoords*/true, /*bNoEvent*/true, /*bNoAscLock*/true, /*bNoDraw*/false); /*bChangeCoords*/true, /*bNoEvent*/true, /*bNoAscLock*/true, /*bNoDraw*/false);
changeArray.push({"Id": aComments[i].comment.asc_getId(), "Comment": aComments[i].comment}); changeArray.push({"Id": aComments[i].comment.asc_getId(), "Comment": aComments[i].comment});
t.bSaveHistory = true; t.bSaveHistory = true;
} else { } else {
t.asc_removeComment(aComments[i].comment.asc_getId(), /*bNoEvent*/true, t.removeComment(aComments[i].comment.asc_getId(), /*bNoEvent*/true,
/*bNoAscLock*/true, /*bNoDraw*/false); /*bNoAscLock*/true, /*bNoDraw*/false);
removeArray.push(aComments[i].comment.asc_getId()); removeArray.push(aComments[i].comment.asc_getId());
} }
...@@ -788,7 +788,7 @@ CCellCommentator.prototype.sortComments = function(sortData) { ...@@ -788,7 +788,7 @@ CCellCommentator.prototype.sortComments = function(sortData) {
for (j = 0, line = oComments[row]; j < line.length; ++j) { for (j = 0, line = oComments[row]; j < line.length; ++j) {
comment = new asc_CCommentData(line[j]); comment = new asc_CCommentData(line[j]);
comment.nRow = places[i].to; comment.nRow = places[i].to;
this.asc_changeComment(comment.asc_getId(), comment, true); this.changeComment(comment.asc_getId(), comment, true);
} }
} }
} }
...@@ -806,7 +806,7 @@ CCellCommentator.prototype.resetLastSelectedId = function() { ...@@ -806,7 +806,7 @@ CCellCommentator.prototype.resetLastSelectedId = function() {
CCellCommentator.prototype.cleanLastSelection = function() { CCellCommentator.prototype.cleanLastSelection = function() {
var metrics; var metrics;
if (this.lastSelectedId) { if (this.lastSelectedId) {
var lastComment = this.asc_findComment(this.lastSelectedId); var lastComment = this.findComment(this.lastSelectedId);
if (lastComment && (metrics = this.worksheet.getCellMetrics(lastComment.nCol, lastComment.nRow))) { if (lastComment && (metrics = this.worksheet.getCellMetrics(lastComment.nCol, lastComment.nRow))) {
var extraOffset = this.pxToPt(1); var extraOffset = this.pxToPt(1);
this.overlayCtx.clearRect(metrics.left, metrics.top, metrics.width - extraOffset, metrics.height - extraOffset); this.overlayCtx.clearRect(metrics.left, metrics.top, metrics.width - extraOffset, metrics.height - extraOffset);
...@@ -823,11 +823,11 @@ CCellCommentator.prototype.calcCommentsCoords = function(bSave) { ...@@ -823,11 +823,11 @@ CCellCommentator.prototype.calcCommentsCoords = function(bSave) {
var commentCell = this.aComments[i]; var commentCell = this.aComments[i];
if (commentCell.asc_getDocumentFlag() || !this.commentCoordsExist(commentCell.asc_getCol(), commentCell.asc_getRow())) { if (commentCell.asc_getDocumentFlag() || !this.commentCoordsExist(commentCell.asc_getCol(), commentCell.asc_getRow())) {
var commentList = this.asc_getComments(commentCell.asc_getCol(), commentCell.asc_getRow()); var commentList = this.getComments(commentCell.asc_getCol(), commentCell.asc_getRow());
// Calculate coords for document comments // Calculate coords for document comments
if (bSave && (commentCell.asc_getCol() == 0) && (commentCell.asc_getRow() == 0)) { if (bSave && (commentCell.asc_getCol() == 0) && (commentCell.asc_getRow() == 0)) {
var documentComments = this.asc_getDocumentComments(); var documentComments = this.getDocumentComments();
for (var j = 0; j < documentComments.length; j++) { for (var j = 0; j < documentComments.length; j++) {
commentList.push(documentComments[j]); commentList.push(documentComments[j]);
} }
...@@ -1005,7 +1005,7 @@ CCellCommentator.prototype.prepareCommentsToSave = function() { ...@@ -1005,7 +1005,7 @@ CCellCommentator.prototype.prepareCommentsToSave = function() {
CCellCommentator.prototype.cleanSelectedComment = function() { CCellCommentator.prototype.cleanSelectedComment = function() {
var metrics; var metrics;
if ( this.lastSelectedId ) { if ( this.lastSelectedId ) {
var comment = this.asc_findComment(this.lastSelectedId); var comment = this.findComment(this.lastSelectedId);
if (comment && !comment.asc_getDocumentFlag() && !comment.asc_getSolved() && if (comment && !comment.asc_getDocumentFlag() && !comment.asc_getSolved() &&
(metrics = this.worksheet.getCellMetrics(comment.asc_getCol(), comment.asc_getRow()))) (metrics = this.worksheet.getCellMetrics(comment.asc_getCol(), comment.asc_getRow())))
this.overlayCtx.clearRect(metrics.left, metrics.top, metrics.width, metrics.height); this.overlayCtx.clearRect(metrics.left, metrics.top, metrics.width, metrics.height);
...@@ -1037,14 +1037,14 @@ CCellCommentator.prototype.ascCvtRatio = function(fromUnits, toUnits) { ...@@ -1037,14 +1037,14 @@ CCellCommentator.prototype.ascCvtRatio = function(fromUnits, toUnits) {
}; };
// Show/Hide // Show/Hide
CCellCommentator.prototype.asc_showComments = function() { CCellCommentator.prototype.showComments = function() {
if ( !this.bShow ) { if ( !this.bShow ) {
this.bShow = true; this.bShow = true;
this.drawCommentCells(); this.drawCommentCells();
} }
}; };
CCellCommentator.prototype.asc_hideComments = function() { CCellCommentator.prototype.hideComments = function() {
this.bShow = false; this.bShow = false;
this.drawCommentCells(); this.drawCommentCells();
this.worksheet.model.workbook.handlers.trigger("asc_onHideComment"); this.worksheet.model.workbook.handlers.trigger("asc_onHideComment");
...@@ -1052,10 +1052,10 @@ CCellCommentator.prototype.asc_hideComments = function() { ...@@ -1052,10 +1052,10 @@ CCellCommentator.prototype.asc_hideComments = function() {
// Main // Main
CCellCommentator.prototype.asc_showComment = function(id, bNew) { CCellCommentator.prototype.showComment = function(id, bNew) {
var comment = this.asc_findComment(id); var comment = this.findComment(id);
if (comment) { if (comment) {
var commentList = this.asc_getComments(comment.asc_getCol(), comment.asc_getRow()); var commentList = this.getComments(comment.asc_getCol(), comment.asc_getRow());
var coords = this.getCommentsCoords(commentList); var coords = this.getCommentsCoords(commentList);
var indexes = []; var indexes = [];
...@@ -1074,8 +1074,8 @@ CCellCommentator.prototype.asc_showComment = function(id, bNew) { ...@@ -1074,8 +1074,8 @@ CCellCommentator.prototype.asc_showComment = function(id, bNew) {
this.lastSelectedId = null; this.lastSelectedId = null;
}; };
CCellCommentator.prototype.asc_selectComment = function(id, bMove) { CCellCommentator.prototype.selectComment = function(id, bMove) {
var comment = this.asc_findComment(id); var comment = this.findComment(id);
var metrics; var metrics;
// Чистим предыдущий селект // Чистим предыдущий селект
...@@ -1119,7 +1119,7 @@ CCellCommentator.prototype.asc_selectComment = function(id, bMove) { ...@@ -1119,7 +1119,7 @@ CCellCommentator.prototype.asc_selectComment = function(id, bMove) {
} }
}; };
CCellCommentator.prototype.asc_findComment = function(id) { CCellCommentator.prototype.findComment = function(id) {
function checkCommentId(id, commentObject) { function checkCommentId(id, commentObject) {
if (commentObject.asc_getId() == id) if (commentObject.asc_getId() == id)
...@@ -1142,7 +1142,7 @@ CCellCommentator.prototype.asc_findComment = function(id) { ...@@ -1142,7 +1142,7 @@ CCellCommentator.prototype.asc_findComment = function(id) {
return null; return null;
}; };
CCellCommentator.prototype.asc_addComment = function(comment, bIsNotUpdate) { CCellCommentator.prototype.addComment = function(comment, bIsNotUpdate) {
var t = this; var t = this;
var oComment = comment; var oComment = comment;
var bChange = false; var bChange = false;
...@@ -1155,7 +1155,7 @@ CCellCommentator.prototype.asc_addComment = function(comment, bIsNotUpdate) { ...@@ -1155,7 +1155,7 @@ CCellCommentator.prototype.asc_addComment = function(comment, bIsNotUpdate) {
oComment.asc_putRow(this.worksheet.getSelectedRowIndex()); oComment.asc_putRow(this.worksheet.getSelectedRowIndex());
} }
var existComments = this.asc_getComments(oComment.nCol, oComment.nRow); var existComments = this.getComments(oComment.nCol, oComment.nRow);
if (existComments.length) { if (existComments.length) {
oComment = existComments[0]; oComment = existComments[0];
bChange = true; bChange = true;
...@@ -1175,9 +1175,9 @@ CCellCommentator.prototype.asc_addComment = function(comment, bIsNotUpdate) { ...@@ -1175,9 +1175,9 @@ CCellCommentator.prototype.asc_addComment = function(comment, bIsNotUpdate) {
this.isLockedComment(oComment, onAddCommentCallback); this.isLockedComment(oComment, onAddCommentCallback);
}; };
CCellCommentator.prototype.asc_changeComment = function(id, oComment, bChangeCoords, bNoEvent, bNoAscLock, bNoDraw) { CCellCommentator.prototype.changeComment = function(id, oComment, bChangeCoords, bNoEvent, bNoAscLock, bNoDraw) {
var t = this; var t = this;
var comment = this.asc_findComment(id); var comment = this.findComment(id);
if (null === comment) if (null === comment)
return; return;
...@@ -1234,9 +1234,9 @@ CCellCommentator.prototype.asc_changeComment = function(id, oComment, bChangeCoo ...@@ -1234,9 +1234,9 @@ CCellCommentator.prototype.asc_changeComment = function(id, oComment, bChangeCoo
this.isLockedComment(comment, onChangeCommentCallback); this.isLockedComment(comment, onChangeCommentCallback);
}; };
CCellCommentator.prototype.asc_removeComment = function(id, bNoEvent, bNoAscLock, bNoDraw) { CCellCommentator.prototype.removeComment = function(id, bNoEvent, bNoAscLock, bNoDraw) {
var t = this; var t = this;
var comment = this.asc_findComment(id); var comment = this.findComment(id);
if (null === comment) if (null === comment)
return; return;
...@@ -1255,7 +1255,7 @@ CCellCommentator.prototype.asc_removeComment = function(id, bNoEvent, bNoAscLock ...@@ -1255,7 +1255,7 @@ CCellCommentator.prototype.asc_removeComment = function(id, bNoEvent, bNoAscLock
// Extra functions // Extra functions
CCellCommentator.prototype.asc_getComments = function(col, row) { CCellCommentator.prototype.getComments = function(col, row) {
// Array of root items // Array of root items
var comments = []; var comments = [];
...@@ -1311,7 +1311,7 @@ CCellCommentator.prototype.getRangeComments = function(range) { ...@@ -1311,7 +1311,7 @@ CCellCommentator.prototype.getRangeComments = function(range) {
return bEmpty ? null : oComments; return bEmpty ? null : oComments;
}; };
CCellCommentator.prototype.asc_getDocumentComments = function() { CCellCommentator.prototype.getDocumentComments = function() {
// Array of root items // Array of root items
var comments = []; var comments = [];
...@@ -1433,7 +1433,7 @@ CCellCommentator.prototype.Undo = function(type, data) { ...@@ -1433,7 +1433,7 @@ CCellCommentator.prototype.Undo = function(type, data) {
case historyitem_Comment_Add: case historyitem_Comment_Add:
if (data.oParent) { if (data.oParent) {
parentComment = this.asc_findComment(data.oParent.asc_getId()); parentComment = this.findComment(data.oParent.asc_getId());
for (i = 0; i < parentComment.aReplies.length; i++) { for (i = 0; i < parentComment.aReplies.length; i++) {
if (parentComment.aReplies[i].asc_getId() == data.asc_getId()) { if (parentComment.aReplies[i].asc_getId() == data.asc_getId()) {
parentComment.aReplies.splice(i, 1); parentComment.aReplies.splice(i, 1);
...@@ -1453,7 +1453,7 @@ CCellCommentator.prototype.Undo = function(type, data) { ...@@ -1453,7 +1453,7 @@ CCellCommentator.prototype.Undo = function(type, data) {
case historyitem_Comment_Remove: case historyitem_Comment_Remove:
if (data.oParent) { if (data.oParent) {
parentComment = this.asc_findComment(data.oParent.asc_getId()); parentComment = this.findComment(data.oParent.asc_getId());
parentComment.aReplies.push(data); parentComment.aReplies.push(data);
} else { } else {
this.aComments.push(data); this.aComments.push(data);
...@@ -1463,7 +1463,7 @@ CCellCommentator.prototype.Undo = function(type, data) { ...@@ -1463,7 +1463,7 @@ CCellCommentator.prototype.Undo = function(type, data) {
case historyitem_Comment_Change: case historyitem_Comment_Change:
if (data.commentAfter.oParent) { if (data.commentAfter.oParent) {
parentComment = this.asc_findComment(data.commentAfter.oParent.asc_getId()); parentComment = this.findComment(data.commentAfter.oParent.asc_getId());
for (i = 0; i < parentComment.aReplies.length; i++) { for (i = 0; i < parentComment.aReplies.length; i++) {
if (parentComment.aReplies[i].asc_getId() == data.asc_getId()) { if (parentComment.aReplies[i].asc_getId() == data.asc_getId()) {
parentComment.aReplies.splice(i, 1); parentComment.aReplies.splice(i, 1);
...@@ -1492,7 +1492,7 @@ CCellCommentator.prototype.Redo = function(type, data) { ...@@ -1492,7 +1492,7 @@ CCellCommentator.prototype.Redo = function(type, data) {
case historyitem_Comment_Add: case historyitem_Comment_Add:
if (data.oParent) { if (data.oParent) {
parentComment = this.asc_findComment(data.oParent.asc_getId()); parentComment = this.findComment(data.oParent.asc_getId());
parentComment.aReplies.push(data); parentComment.aReplies.push(data);
} else { } else {
this.aComments.push(data); this.aComments.push(data);
...@@ -1502,7 +1502,7 @@ CCellCommentator.prototype.Redo = function(type, data) { ...@@ -1502,7 +1502,7 @@ CCellCommentator.prototype.Redo = function(type, data) {
case historyitem_Comment_Remove: case historyitem_Comment_Remove:
if (data.oParent) { if (data.oParent) {
parentComment = this.asc_findComment(data.oParent.asc_getId()); parentComment = this.findComment(data.oParent.asc_getId());
for (i = 0; i < parentComment.aReplies.length; i++) { for (i = 0; i < parentComment.aReplies.length; i++) {
if (parentComment.aReplies[i].asc_getId() == data.asc_getId()) { if (parentComment.aReplies[i].asc_getId() == data.asc_getId()) {
parentComment.aReplies.splice(i, 1); parentComment.aReplies.splice(i, 1);
...@@ -1522,7 +1522,7 @@ CCellCommentator.prototype.Redo = function(type, data) { ...@@ -1522,7 +1522,7 @@ CCellCommentator.prototype.Redo = function(type, data) {
case historyitem_Comment_Change: case historyitem_Comment_Change:
if (data.commentBefore.oParent) { if (data.commentBefore.oParent) {
parentComment = this.asc_findComment(data.commentBefore.oParent.asc_getId()); parentComment = this.findComment(data.commentBefore.oParent.asc_getId());
for (i = 0; i < parentComment.aReplies.length; i++) { for (i = 0; i < parentComment.aReplies.length; i++) {
if (parentComment.aReplies[i].asc_getId() == data.asc_getId()) { if (parentComment.aReplies[i].asc_getId() == data.asc_getId()) {
parentComment.aReplies.splice(i, 1); parentComment.aReplies.splice(i, 1);
......
...@@ -937,7 +937,7 @@ ...@@ -937,7 +937,7 @@
var ws = this.getWorksheet(); var ws = this.getWorksheet();
var comments = ws.cellCommentator.getCommentsXY(x, y); var comments = ws.cellCommentator.getCommentsXY(x, y);
if (comments.length) if (comments.length)
ws.cellCommentator.asc_showComment(comments[0].asc_getId()); ws.cellCommentator.showComment(comments[0].asc_getId());
}; };
WorkbookView.prototype._onUpdateSelectionName = function () { WorkbookView.prototype._onUpdateSelectionName = function () {
......
...@@ -5966,7 +5966,7 @@ ...@@ -5966,7 +5966,7 @@
return {cursor: kCurAutoFilter, target: c_oTargetType.FilterObject, col: -1, row: -1, idFilter: autoFilterInfo.id}; return {cursor: kCurAutoFilter, target: c_oTargetType.FilterObject, col: -1, row: -1, idFilter: autoFilterInfo.id};
// Проверим есть ли комменты // Проверим есть ли комменты
var comments = this.cellCommentator.asc_getComments(c.col, r.row); var comments = this.cellCommentator.getComments(c.col, r.row);
var coords = undefined; var coords = undefined;
var indexes = undefined; var indexes = undefined;
...@@ -6625,7 +6625,7 @@ ...@@ -6625,7 +6625,7 @@
} else } else
cell_info.hyperlink = null; cell_info.hyperlink = null;
cell_info.comments = this.cellCommentator.asc_getComments(ar.c1, ar.r1); cell_info.comments = this.cellCommentator.getComments(ar.c1, ar.r1);
cell_info.flags.merge = null !== range.hasMerged(); cell_info.flags.merge = null !== range.hasMerged();
if (bExt) { if (bExt) {
...@@ -8831,7 +8831,7 @@ ...@@ -8831,7 +8831,7 @@
//change nRow, nCol //change nRow, nCol
commentData.asc_putCol(c + autoC*plCol); commentData.asc_putCol(c + autoC*plCol);
commentData.asc_putRow(r + autoR*plRow); commentData.asc_putRow(r + autoR*plRow);
t.cellCommentator.asc_addComment(commentData, true); t.cellCommentator.addComment(commentData, true);
} }
} }
} }
......
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