diff options
Diffstat (limited to 'vcl/unx/generic/print/printerjob.cxx')
-rw-r--r-- | vcl/unx/generic/print/printerjob.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/print/printerjob.cxx b/vcl/unx/generic/print/printerjob.cxx index c3005fca8de7..e4b3f8912253 100644 --- a/vcl/unx/generic/print/printerjob.cxx +++ b/vcl/unx/generic/print/printerjob.cxx @@ -576,8 +576,8 @@ PrinterJob::StartPage (const JobData& rJobSetup) osl::File* pPageHeader = CreateSpoolFile ( "psp_pghead", aExt); osl::File* pPageBody = CreateSpoolFile ( "psp_pgbody", aExt); - maHeaderVector.emplace_back (pPageHeader); - maPageVector.emplace_back (pPageBody); + maHeaderVector.push_back (pPageHeader); + maPageVector.push_back (pPageBody); if( ! (pPageHeader && pPageBody) ) return; |