From c7258cfccdf9f4c5235da1b135801f957a5b0ec1 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 6 Feb 2015 09:46:57 +0000 Subject: shared_ptr(new T(args)) -> make_shared(args) and boost:make_shared->std::make_shared Change-Id: Ic1e187c52c856a7b27817967b2caa8920f23a98d --- unotools/source/config/saveopt.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unotools') diff --git a/unotools/source/config/saveopt.cxx b/unotools/source/config/saveopt.cxx index fa7e065e3e00..9031dee52c7e 100644 --- a/unotools/source/config/saveopt.cxx +++ b/unotools/source/config/saveopt.cxx @@ -736,7 +736,7 @@ void SvtSaveOptions_Impl::Commit() aValues.realloc(nRealCount); PutProperties( aNames, aValues ); - boost::shared_ptr< comphelper::ConfigurationChanges > batch( + std::shared_ptr< comphelper::ConfigurationChanges > batch( comphelper::ConfigurationChanges::create()); officecfg::Office::Recovery::AutoSave::TimeIntervall::set(nAutoSaveTime, batch); officecfg::Office::Recovery::AutoSave::Enabled::set(bAutoSave, batch); -- cgit