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
1e8a65c2
Commit
1e8a65c2
authored
Nov 16, 2016
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OdfFormat - fix presentation
parent
6b3594b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
ASCOfficeOdfFile/src/docx/pptx_output_xml.cpp
ASCOfficeOdfFile/src/docx/pptx_output_xml.cpp
+5
-5
ASCOfficeOdfFile/src/odf/datatypes/presentationclass.cpp
ASCOfficeOdfFile/src/odf/datatypes/presentationclass.cpp
+3
-2
No files found.
ASCOfficeOdfFile/src/docx/pptx_output_xml.cpp
View file @
1e8a65c2
...
...
@@ -239,11 +239,11 @@ void pptx_xml_slideMaster::write_to(std::wostream & strm)
{
CP_XML_NODE
(
L"p:sldMaster"
)
{
CP_XML_ATTR
(
L"xmlns:
p"
,
L"http://schemas.openxmlformats.org/presentationml/2006/main"
);
CP_XML_ATTR
(
L"xmlns:r"
,
L"http://schemas.openxmlformats.org/officeDocument/2006/relationships"
);
CP_XML_ATTR
(
L"xmlns:
a"
,
L"http://schemas.openxmlformats.org/drawingml/2006/main"
);
CP_XML_NODE
(
L"p:cSld"
)
CP_XML_ATTR
(
L"xmlns:
a"
,
L"http://schemas.openxmlformats.org/drawingml/2006/main"
);
CP_XML_ATTR
(
L"xmlns:r"
,
L"http://schemas.openxmlformats.org/officeDocument/2006/relationships"
);
CP_XML_ATTR
(
L"xmlns:
p"
,
L"http://schemas.openxmlformats.org/presentationml/2006/main"
);
CP_XML_NODE
(
L"p:cSld"
)
{
CP_XML_STREAM
()
<<
slideMasterBackground_
.
str
();
...
...
ASCOfficeOdfFile/src/odf/datatypes/presentationclass.cpp
View file @
1e8a65c2
...
...
@@ -112,8 +112,8 @@ std::wstring presentation_class::get_type_ms()
case
title
:
res
=
L"title"
;
break
;
case
subtitle
:
res
=
L"subTitle"
;
//
case subtitle:
//
res = L"subTitle";
break
;
case
graphic
:
res
=
L"dgm"
;
...
...
@@ -142,6 +142,7 @@ std::wstring presentation_class::get_type_ms()
case
page_number
:
res
=
L"sldNum"
;
break
;
case
subtitle
:
case
page
:
case
notes
:
case
handout
:
...
...
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