summaryrefslogtreecommitdiff
path: root/editeng/source/items/CustomPropertyField.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/source/items/CustomPropertyField.cxx')
-rw-r--r--editeng/source/items/CustomPropertyField.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/editeng/source/items/CustomPropertyField.cxx b/editeng/source/items/CustomPropertyField.cxx
index d46b47af52ae..77f4aff243aa 100644
--- a/editeng/source/items/CustomPropertyField.cxx
+++ b/editeng/source/items/CustomPropertyField.cxx
@@ -9,7 +9,6 @@
*/
#include <editeng/CustomPropertyField.hxx>
-#include <o3tl/make_unique.hxx>
#include <vcl/metaact.hxx>
#include <com/sun/star/beans/XPropertyContainer.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
@@ -30,7 +29,7 @@ CustomPropertyField::~CustomPropertyField()
std::unique_ptr<SvxFieldData> CustomPropertyField::Clone() const
{
- return o3tl::make_unique<CustomPropertyField>(msName, msCurrentPresentation);
+ return std::make_unique<CustomPropertyField>(msName, msCurrentPresentation);
}
bool CustomPropertyField::operator==(const SvxFieldData& rOther) const