Commit 582fce4c authored by ElenaSubbotina's avatar ElenaSubbotina

fix bug #35466

parent bde723c5
......@@ -98,7 +98,10 @@ namespace PPTX
bool bIsSlide = false;
OOX::File* pSrcFile = dynamic_cast<OOX::File*>(this);
if (NULL != pSrcFile)
bIsSlide = (pSrcFile->type() == OOX::Presentation::FileTypes::Slide) ? true : false;
{
bIsSlide = (pSrcFile->type() == OOX::Presentation::FileTypes::Slide ||
pSrcFile->type() == OOX::Presentation::FileTypes::NotesSlide) ? true : false;
}
size_t nCount = rels.m_arrRelations.size();
......
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