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

asc_CCellCommentator -> CCellCommentator

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55804 954022d7-b5bf-4e40-9824-e11837661b57
parent 27b304fe
......@@ -12,7 +12,6 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
*/
function ($, window, undefined) {
var asc = window["Asc"];
var asc_applyFunction = asc.applyFunction;
var asc_CCollaborativeEditing = asc.CCollaborativeEditing;
......
......@@ -491,7 +491,7 @@ CompositeCommentData.prototype = {
// CellCommentator
//-----------------------------------------------------------------------------------
/** @constructor */
function asc_CCellCommentator(currentSheet) {
function CCellCommentator(currentSheet) {
var _this = this;
var asc = window["Asc"];
......@@ -1319,7 +1319,7 @@ function asc_CCellCommentator(currentSheet) {
}
// Prototype
asc_CCellCommentator.prototype = {
CCellCommentator.prototype = {
// Show/Hide
......@@ -1784,19 +1784,3 @@ asc_CCellCommentator.prototype = {
}
}
};
window["Asc"]["asc_CCellCommentator"] = window["Asc"].asc_CCellCommentator = asc_CCellCommentator;
prot = asc_CCellCommentator.prototype;
prot["asc_showComments"] = prot.asc_showComments;
prot["asc_hideComments"] = prot.asc_hideComments;
prot["asc_selectComment"] = prot.asc_selectComment;
prot["asc_showComment"] = prot.asc_showComment;
prot["asc_findComment"] = prot.asc_findComment;
prot["asc_addComment"] = prot.asc_addComment;
prot["asc_changeComment"] = prot.asc_changeComment;
prot["asc_removeComment"] = prot.asc_removeComment;
prot["asc_getComments"] = prot.asc_getComments;
prot["asc_getDocumentComments"] = prot.asc_getDocumentComments;
......@@ -32,7 +32,6 @@
var asc_SR = asc.StringRender;
var asc_getcvt = asc.getCvtRatio;
var asc_CSP = asc.asc_CStylesPainter;
var asc_CCellComments = asc.asc_CCellCommentator;
function WorkbookCommentsModel (handlers) {
this.workbook = {handlers: handlers};
......@@ -450,7 +449,7 @@
});
}
this.cellCommentator = new asc_CCellComments({
this.cellCommentator = new CCellCommentator({
model: new WorkbookCommentsModel(this.handlers),
collaborativeEditing: this.collaborativeEditing,
draw: function() {},
......
......@@ -43,7 +43,6 @@
var asc_CPageMargins = asc.asc_CPageMargins;
var asc_CPagePrint = asc.CPagePrint;
var asc_CCollaborativeRange = asc.asc_CCollaborativeRange;
var asc_CCellCommentator = asc.asc_CCellCommentator;
var asc_CSelectionMathInfo = asc.asc_CSelectionMathInfo;
/*
......@@ -431,7 +430,7 @@
// Auto filters
this.autoFilters = new asc_AF(this);
this.drawingArea = new DrawingArea(this);
this.cellCommentator = new asc_CCellCommentator(this);
this.cellCommentator = new CCellCommentator(this);
this.objectRender = null;
this._init();
......
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