Commit 91479e4c authored by Ilya Kirillov's avatar Ilya Kirillov

Исправлены ошибки в названиях функций.

parent a3a756cf
......@@ -15902,7 +15902,7 @@ CDocument.prototype.controller_MoveCursorToEndPos = function(AddToSelect)
this.Content[this.CurPos.ContentPos].Cursor_MoveToEndPos(false);
}
};
CDocument.prototype.controller_MoveCursorRight = function(AddToSelect, Word)
CDocument.prototype.controller_MoveCursorLeft = function(AddToSelect, Word)
{
if (this.CurPos.ContentPos < 0)
return false;
......
......@@ -103,7 +103,7 @@ CLogicDocumentController.prototype.MoveCursorToXY = function(X, Y, PageAbs, AddT
};
CLogicDocumentController.prototype.MoveCursorToCell = function(bNext)
{
return this.LogicDocument.controller_CursorMoveToCell(bNext);
return this.LogicDocument.controller_MoveCursorToCell(bNext);
};
......
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