Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
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
onlyoffice_core
Commits
99822fb5
Commit
99822fb5
authored
Jan 27, 2017
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x2t ... fix after testing
parent
f1d9c12f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
ASCOfficeDocxFile2/BinWriter/BinWriters.h
ASCOfficeDocxFile2/BinWriter/BinWriters.h
+1
-1
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
+1
-1
X2tConverter/build/Qt/X2tConverter.pri
X2tConverter/build/Qt/X2tConverter.pri
+1
-1
No files found.
ASCOfficeDocxFile2/BinWriter/BinWriters.h
View file @
99822fb5
...
...
@@ -6219,7 +6219,7 @@ namespace BinDocxRW
}
void
GetTableSize
(
std
::
vector
<
OOX
::
WritingElement
*>&
rows
,
int
&
nRows
,
int
&
nCols
,
OOX
::
Logic
::
CTableProperty
**
ppTblPr
)
{
for
(
size_t
i
=
rows
.
size
()
-
1
;
i
>=
0
;
i
--
)
for
(
int
i
=
(
int
)
rows
.
size
()
-
1
;
i
>=
0
;
i
--
)
{
OOX
::
WritingElement
*
item
=
rows
[
i
];
if
(
OOX
::
et_w_tblPr
==
item
->
getType
())
...
...
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
View file @
99822fb5
...
...
@@ -295,7 +295,7 @@ namespace PPTX
std
::
wstring
*
main_props
=
NULL
;
oDrawingConverter
.
SetRelsPath
(
xml_object_rels
);
oDrawingConverter
.
SetAdditionalParam
(
L"xfrm_override"
,
(
BYTE
*
)
&
xfrm
,
sizeof
(
xfrm
));
oDrawingConverter
.
SetAdditionalParam
(
L"xfrm_override"
,
(
BYTE
*
)
xfrm
.
GetPointer
()
,
sizeof
(
xfrm
));
HRESULT
hRes
=
oDrawingConverter
.
AddObject
(
temp
,
&
main_props
);
if
(
hRes
==
S_OK
&&
oDrawingConverter
.
m_pBinaryWriter
->
GetPosition
()
>
10
)
...
...
X2tConverter/build/Qt/X2tConverter.pri
View file @
99822fb5
...
...
@@ -7,7 +7,7 @@
QT -= core
QT -= gui
VERSION = 2.0.3.43
0
VERSION = 2.0.3.43
2
DEFINES += INTVER=$$VERSION
TARGET = x2t
...
...
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