diff options
Diffstat (limited to 'writerperfect')
-rw-r--r-- | writerperfect/qa/unit/WPXSvStreamTest.cxx | 2 | ||||
-rw-r--r-- | writerperfect/source/impress/KeynoteImportFilter.cxx | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/writerperfect/qa/unit/WPXSvStreamTest.cxx b/writerperfect/qa/unit/WPXSvStreamTest.cxx index b13fc91e0e7c..cbd0899b54bd 100644 --- a/writerperfect/qa/unit/WPXSvStreamTest.cxx +++ b/writerperfect/qa/unit/WPXSvStreamTest.cxx @@ -97,7 +97,7 @@ shared_ptr<RVNGInputStream> lcl_createStreamForURL(const OUString& rURL) const Reference<io::XInputStream> xInputStream(xFileAccess->openFileRead(rURL), css::uno::UNO_SET_THROW); - return shared_ptr<RVNGInputStream>(new WPXSvInputStream(xInputStream)); + return std::make_shared<WPXSvInputStream>(xInputStream); } void lcl_testSubStreams(const shared_ptr<RVNGInputStream>& pInput) diff --git a/writerperfect/source/impress/KeynoteImportFilter.cxx b/writerperfect/source/impress/KeynoteImportFilter.cxx index ec4a4f18af2c..d83f8acea431 100644 --- a/writerperfect/source/impress/KeynoteImportFilter.cxx +++ b/writerperfect/source/impress/KeynoteImportFilter.cxx @@ -105,7 +105,8 @@ KeynoteImportFilter::detect(css::uno::Sequence<css::beans::PropertyValue>& Descr if (!xInputStream.is()) return OUString(); - std::shared_ptr<librevenge::RVNGInputStream> input(new WPXSvInputStream(xInputStream)); + std::shared_ptr<librevenge::RVNGInputStream> input + = std::make_shared<WPXSvInputStream>(xInputStream); /* Apple Keynote documents come in two variants: * * actual files (zip), only produced by Keynote 5 (at least with |