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 --- cui/source/options/optopencl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cui/source/options/optopencl.cxx') diff --git a/cui/source/options/optopencl.cxx b/cui/source/options/optopencl.cxx index 63475ea2a7f1..cbc8a38cf2ab 100644 --- a/cui/source/options/optopencl.cxx +++ b/cui/source/options/optopencl.cxx @@ -121,7 +121,7 @@ SfxTabPage* SvxOpenCLTabPage::Create( vcl::Window* pParent, const SfxItemSet* rA bool SvxOpenCLTabPage::FillItemSet( SfxItemSet* ) { bool bModified = false; - boost::shared_ptr batch(comphelper::ConfigurationChanges::create()); + std::shared_ptr batch(comphelper::ConfigurationChanges::create()); if (mpUseOpenCL->IsValueChangedFromSaved()) maConfig.mbUseOpenCL = mpUseOpenCL->IsChecked(); -- cgit