summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/pdfparse/pdfparse.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/pdfimport/pdfparse/pdfparse.cxx')
-rw-r--r--sdext/source/pdfimport/pdfparse/pdfparse.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sdext/source/pdfimport/pdfparse/pdfparse.cxx b/sdext/source/pdfimport/pdfparse/pdfparse.cxx
index 5db85cc18e87..28f0857986ac 100644
--- a/sdext/source/pdfimport/pdfparse/pdfparse.cxx
+++ b/sdext/source/pdfimport/pdfparse/pdfparse.cxx
@@ -309,7 +309,7 @@ public:
PDFContainer* pContainer = dynamic_cast<PDFContainer*>(m_aObjectStack.back());
if( pContainer == nullptr )
parseError( "comment without container", first );
- pContainer->m_aSubElements.push_back( pComment );
+ pContainer->m_aSubElements.emplace_back( pComment );
}
void insertNewValue( PDFEntry* pNewValue, iteratorT pPos )
@@ -351,7 +351,7 @@ public:
}
}
if( pContainer )
- pContainer->m_aSubElements.push_back( pNewValue );
+ pContainer->m_aSubElements.emplace_back( pNewValue );
else
{
if( ! pMsg )
@@ -410,7 +410,7 @@ public:
( dynamic_cast<PDFFile*>(pContainer) ||
dynamic_cast<PDFPart*>(pContainer) ) )
{
- pContainer->m_aSubElements.push_back( pObj );
+ pContainer->m_aSubElements.emplace_back( pObj );
m_aObjectStack.push_back( pObj );
}
else
@@ -502,7 +502,7 @@ public:
PDFStream* pStream = new PDFStream( first - m_aGlobalBegin, last - m_aGlobalBegin, pDict );
pObj->m_pStream = pStream;
- pObj->m_aSubElements.push_back( pStream );
+ pObj->m_aSubElements.emplace_back( pStream );
}
}
else
@@ -522,7 +522,7 @@ public:
( dynamic_cast<PDFFile*>(pContainer) ||
dynamic_cast<PDFPart*>(pContainer) ) )
{
- pContainer->m_aSubElements.push_back( pTrailer );
+ pContainer->m_aSubElements.emplace_back( pTrailer );
m_aObjectStack.push_back( pTrailer );
}
else