summaryrefslogtreecommitdiff
path: root/writerperfect/source
diff options
context:
space:
mode:
Diffstat (limited to 'writerperfect/source')
-rw-r--r--writerperfect/source/common/DirectoryStream.cxx4
1 files changed, 1 insertions, 3 deletions
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();
}