From 741629f48a3fe72fb1e9fb68077446907585e852 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 30 Sep 2014 16:05:43 +0200 Subject: Some glue for using std::unique_ptr with the Boost Pointer Container Library Change-Id: Ie975e963ed64fb96542a9771f85eef72d8266496 --- svtools/source/svhtml/parhtml.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'svtools/source/svhtml') diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx index 5524bc038dd3..e7796727f356 100644 --- a/svtools/source/svhtml/parhtml.cxx +++ b/svtools/source/svhtml/parhtml.cxx @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -38,6 +39,7 @@ #include #include +#include using namespace ::com::sun::star; @@ -1582,8 +1584,7 @@ const HTMLOptions& HTMLParser::GetOptions( sal_uInt16 *pNoConvertToken ) std::unique_ptr pOption( new HTMLOption(sal::static_int_cast(nToken), sName, aValue)); - maOptions.push_back(pOption.get()); - pOption.release(); + o3tl::ptr_container::push_back(maOptions, std::move(pOption)); } else // Ignore white space and unexpected characters -- cgit