Commit 99570b3b authored by ElenaSubbotina's avatar ElenaSubbotina

.

parent d9c67591
...@@ -55,6 +55,8 @@ ...@@ -55,6 +55,8 @@
#include "../../../Common/DocxFormat/Source/DocxFormat/Diagram/DiagramDrawing.h" #include "../../../Common/DocxFormat/Source/DocxFormat/Diagram/DiagramDrawing.h"
#include "../../../Common/DocxFormat/Source/DocxFormat/Diagram/DiagramData.h" #include "../../../Common/DocxFormat/Source/DocxFormat/Diagram/DiagramData.h"
#include "../../../ASCOfficePPTXFile/PPTXFormat/Logic/Shape.h"
#define PROGRESSEVENT_ID 0 #define PROGRESSEVENT_ID 0
namespace Oox2Odf namespace Oox2Odf
...@@ -267,13 +269,13 @@ void OoxConverter::convert(OOX::WritingElement *oox_unknown) ...@@ -267,13 +269,13 @@ void OoxConverter::convert(OOX::WritingElement *oox_unknown)
//et_p_cNvPr, //et_p_cNvPr,
//et_p_xfrm, //et_p_xfrm,
case PPTX::et_p_ShapeTree: case OOX::et_p_ShapeTree:
{ {
PPTX::Logic::SpTree *spTree = static_cast<PPTX::Logic::SpTree *>(oox_unknown); PPTX::Logic::SpTree *spTree = static_cast<PPTX::Logic::SpTree *>(oox_unknown);
convert(spTree); convert(spTree);
}break; }break;
case PPTX::et_p_Shape: case OOX::et_p_Shape:
{ {
PPTX::Logic::Shape *shape = static_cast<PPTX::Logic::Shape *>(oox_unknown); PPTX::Logic::Shape *shape = static_cast<PPTX::Logic::Shape *>(oox_unknown);
convert(shape); convert(shape);
......
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