Commit 1e8a65c2 authored by ElenaSubbotina's avatar ElenaSubbotina

OdfFormat - fix presentation

parent 6b3594b5
......@@ -239,9 +239,9 @@ 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_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")
{
......
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment