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
061203e9
Commit
061203e9
authored
Nov 07, 2016
by
konovalovsergey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 33330
parent
0770d113
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
ASCOfficePPTXFile/PPTXFormat/Logic/Paragraph.h
ASCOfficePPTXFile/PPTXFormat/Logic/Paragraph.h
+19
-0
No files found.
ASCOfficePPTXFile/PPTXFormat/Logic/Paragraph.h
View file @
061203e9
...
@@ -83,6 +83,25 @@ namespace PPTX
...
@@ -83,6 +83,25 @@ namespace PPTX
endParaRPr
=
oNode
;
endParaRPr
=
oNode
;
else
if
((
_T
(
"r"
)
==
strName
)
||
(
_T
(
"fld"
)
==
strName
)
||
(
_T
(
"br"
)
==
strName
)
||
(
_T
(
"m"
)
==
strName
))
else
if
((
_T
(
"r"
)
==
strName
)
||
(
_T
(
"fld"
)
==
strName
)
||
(
_T
(
"br"
)
==
strName
)
||
(
_T
(
"m"
)
==
strName
))
RunElems
.
push_back
(
RunElem
(
oNode
));
RunElems
.
push_back
(
RunElem
(
oNode
));
else
if
(
_T
(
"AlternateContent"
)
==
strName
)
{
//code as in SpTreeElem.cpp
XmlUtils
::
CXmlNode
oNodeChoice
;
if
(
oNode
.
GetNode
(
_T
(
"mc:Choice"
),
oNodeChoice
))
{
XmlUtils
::
CXmlNode
oNodeFall
;
CString
sRequires
;
//todo better check (a14 can be math, slicer)
if
(
oNodeChoice
.
GetAttributeIfExist
(
L"Requires"
,
sRequires
)
&&
L"a14"
==
sRequires
)
{
fromXML
(
oNodeChoice
);
}
else
if
(
oNode
.
GetNode
(
_T
(
"mc:Fallback"
),
oNodeFall
))
{
fromXML
(
oNodeFall
);
}
}
}
}
}
}
}
...
...
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