Commit 58905120 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с определением залоченности таблицы при её удалении (баг 19590).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49480 954022d7-b5bf-4e40-9824-e11837661b57
parent c48a3449
......@@ -5699,7 +5699,6 @@ CTable.prototype =
case changestype_Paragraph_Properties:
case changestype_Document_Content:
case changestype_Document_Content_Add:
case changestype_Remove:
case changestype_Delete:
case changestype_Image_Properties:
{
......@@ -5723,6 +5722,12 @@ CTable.prototype =
break;
}
case changestype_Remove:
{
this.Lock.Check( this.Get_Id() );
break;
}
case changestype_Table_Properties:
{
if ( false != bCheckInner && true === this.Is_InnerTable() )
......
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