summaryrefslogtreecommitdiff
path: root/writerperfect
diff options
context:
space:
mode:
Diffstat (limited to 'writerperfect')
-rw-r--r--writerperfect/qa/unit/DirectoryStreamTest.cxx2
-rw-r--r--writerperfect/source/common/DirectoryStream.cxx4
2 files changed, 1 insertions, 5 deletions
diff --git a/writerperfect/qa/unit/DirectoryStreamTest.cxx b/writerperfect/qa/unit/DirectoryStreamTest.cxx
index 7c48e49b48e4..8d8388dc3c0d 100644
--- a/writerperfect/qa/unit/DirectoryStreamTest.cxx
+++ b/writerperfect/qa/unit/DirectoryStreamTest.cxx
@@ -13,8 +13,6 @@
#include <comphelper/processfactory.hxx>
-#include <o3tl/make_unique.hxx>
-
#include <ucbhelper/content.hxx>
#include <test/bootstrapfixture.hxx>
diff --git a/writerperfect/source/common/DirectoryStream.cxx b/writerperfect/source/common/DirectoryStream.cxx
index 7f3e1b165da6..d6d39143ecdd 100644
--- a/writerperfect/source/common/DirectoryStream.cxx
+++ b/writerperfect/source/common/DirectoryStream.cxx
@@ -33,8 +33,6 @@
#include <comphelper/processfactory.hxx>
-#include <o3tl/make_unique.hxx>
-
#include <rtl/ustring.hxx>
#include <ucbhelper/content.hxx>
@@ -145,7 +143,7 @@ DirectoryStream::createForParent(const css::uno::Reference<css::ucb::XContent>&
const uno::Reference<ucb::XContent> xDirContent(xChild->getParent(), uno::UNO_QUERY);
if (xDirContent.is())
{
- pDir = o3tl::make_unique<DirectoryStream>(xDirContent);
+ pDir = std::make_unique<DirectoryStream>(xDirContent);
if (!pDir->isStructured())
pDir.reset();
}