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
58df15f5
Commit
58df15f5
authored
May 23, 2016
by
alexey.musinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[mobile] сборка конвертера
parent
1b953d68
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
+2
-2
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.h
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.h
+2
-2
No files found.
ASCOfficePPTXFile/PPTXFormat/Logic/GraphicFrame.cpp
View file @
58df15f5
...
...
@@ -133,12 +133,12 @@ namespace PPTX
oleObject
.
Init
();
node
.
ReadAttributeBase
(
L"progId"
,
oleObject
->
m_sProgId
);
node
.
ReadAttributeBase
(
L"r:id"
,
oleObject
->
m_oId
);
int
imgW
=
node
.
GetAttributeInt
(
L"imgW"
,
0
);
int
imgW
=
node
.
GetAttributeInt
(
CString
(
L"imgW"
)
,
0
);
if
(
imgW
>
0
)
{
oleObject
->
m_oDxaOrig
=
Emu_To_Twips
(
imgW
);
}
int
imgH
=
node
.
GetAttributeInt
(
L"imgH"
,
0
);
int
imgH
=
node
.
GetAttributeInt
(
CString
(
L"imgH"
)
,
0
);
if
(
imgH
>
0
)
{
oleObject
->
m_oDyaOrig
=
Emu_To_Twips
(
imgH
);
...
...
ASCOfficePPTXFile/PPTXFormat/Logic/Pic.h
View file @
58df15f5
...
...
@@ -158,8 +158,8 @@ namespace PPTX
virtual
void
fromPPTY
(
NSBinPptxRW
::
CBinaryFileReader
*
pReader
);
virtual
void
FillParentPointersForChilds
();
bool
isValid
();
CString
COLEObject
::
GetFullOleName
(
const
PPTX
::
RId
&
oRId
,
FileContainer
*
pRels
)
const
;
std
::
wstring
COLEObject
::
GetOleData
(
const
std
::
wstring
&
sFilePath
)
const
;
CString
GetFullOleName
(
const
PPTX
::
RId
&
oRId
,
FileContainer
*
pRels
)
const
;
std
::
wstring
GetOleData
(
const
std
::
wstring
&
sFilePath
)
const
;
public:
// Attributes
...
...
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