Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
225a4aa4
Commit
225a4aa4
authored
Jul 28, 2017
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug #35304
parent
d1718df1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
word/Editor/DocumentContentBase.js
word/Editor/DocumentContentBase.js
+1
-1
word/Editor/HeaderFooter.js
word/Editor/HeaderFooter.js
+7
-7
No files found.
word/Editor/DocumentContentBase.js
View file @
225a4aa4
...
...
@@ -355,7 +355,7 @@ CDocumentContentBase.prototype.private_Remove = function(Count, bOnlyText, bRemo
// Если есть параграфы, которые были добавлены во время рецензирования, тогда мы их удаляем
for
(
var
Index
=
StartPos
;
Index
<=
EndPos
;
Index
++
)
{
this
.
Content
[
Index
].
Remove
(
1
,
true
);
this
.
Content
[
Index
].
Remove
(
1
,
true
,
bRemoveOnlySelection
,
bOnTextAdd
);
}
this
.
RemoveSelection
();
...
...
word/Editor/HeaderFooter.js
View file @
225a4aa4
...
...
@@ -1791,8 +1791,8 @@ CHeaderFooterController.prototype =
Is_UseInDocument
:
function
(
Id
)
{
var
HdrFtr
=
g_oTableId
.
Get_ById
(
Id
);
if
(
-
1
===
this
.
LogicDocument
.
SectionsInfo
.
Find_ByHdrFtr
(
HdrFtr
)
)
var
HdrFtr
=
g_oTableId
.
Get_ById
(
Id
);
if
(
-
1
===
this
.
LogicDocument
.
SectionsInfo
.
Find_ByHdrFtr
(
HdrFtr
)
)
return
false
;
return
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment