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
b1fae82c
Commit
b1fae82c
authored
May 04, 2017
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
e03cb633
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
common/Drawings/Format/DrawingContent.js
common/Drawings/Format/DrawingContent.js
+2
-2
common/FontsFreeType/FontFile.js
common/FontsFreeType/FontFile.js
+4
-4
word/Private/TrackRevisions.js
word/Private/TrackRevisions.js
+1
-1
No files found.
common/Drawings/Format/DrawingContent.js
View file @
b1fae82c
...
...
@@ -280,7 +280,7 @@
if
(
true
===
Element
.
Is_EmptyPage
(
ElementPageIndex
))
oColumn
.
Empty
=
true
;
}
for
(
var
TempColumnIndex
=
ColumnIndex
+
1
;
TempColumnIndex
<
ColumnsCount
;
++
TempColumnIndex
)
for
(
var
TempColumnIndex
=
nColumnIndex
+
1
;
TempColumnIndex
<
n
ColumnsCount
;
++
TempColumnIndex
)
{
oSection
.
Columns
[
TempColumnIndex
].
Empty
=
true
;
oSection
.
Columns
[
TempColumnIndex
].
Pos
=
i
;
...
...
@@ -312,7 +312,7 @@
for
(
var
TempColumnIndex
=
nColumnIndex
+
1
;
TempColumnIndex
<
nColumnsCount
;
++
TempColumnIndex
)
{
var
ElementPageIndex
=
this
.
private_GetElementPageIndex
(
i
,
nPageIndex
,
TempColumnIndex
,
nColumnsCount
);
this
.
Content
[
Index
].
Recalculate_SkipPage
(
ElementPageIndex
);
this
.
Content
[
i
].
Recalculate_SkipPage
(
ElementPageIndex
);
oSection
.
Columns
[
TempColumnIndex
].
Empty
=
true
;
oSection
.
Columns
[
TempColumnIndex
].
Pos
=
i
;
oSection
.
Columns
[
TempColumnIndex
].
EndPos
=
i
-
1
;
...
...
common/FontsFreeType/FontFile.js
View file @
b1fae82c
...
...
@@ -1719,10 +1719,10 @@
pCurGlyph
.
fX
=
fPenX
;
pCurGlyph
.
fY
=
fPenY
;
pCurGlyph
.
fLeft
=
fLeft
;
pCurGlyph
.
fTop
=
fTop
;
pCurGlyph
.
fRight
=
fRight
;
pCurGlyph
.
fBottom
=
fBottom
;
pCurGlyph
.
fLeft
=
0
;
pCurGlyph
.
fTop
=
0
;
pCurGlyph
.
fRight
=
0
;
pCurGlyph
.
fBottom
=
0
;
pCurGlyph
.
eState
=
EGlyphState
.
glyphstateMiss
;
...
...
word/Private/TrackRevisions.js
View file @
b1fae82c
...
...
@@ -375,7 +375,7 @@ CDocument.prototype.private_GetRevisionsChangeParagraphInFooters = function(Sear
}
var
nDirection
=
SearchEngine
.
Get_Direction
();
if
(
nPos
<
0
||
nPos
>=
Count
)
if
(
nPos
<
0
||
nPos
>=
n
Count
)
{
if
(
nDirection
>
0
)
nPos
=
0
;
...
...
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