summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/framework/configuration/ConfigurationController.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-24 11:19:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-24 23:35:17 +0000
commit4b16c89f06146ce50b360916538fe744ec2a72c7 (patch)
treede26103266e223788e0c465c914c915891d23987 /sd/source/ui/framework/configuration/ConfigurationController.cxx
parentdesktop: make LibLibreOffice_Impl visible to testcases (diff)
downloadcore-4b16c89f06146ce50b360916538fe744ec2a72c7.tar.gz
core-4b16c89f06146ce50b360916538fe744ec2a72c7.zip
sd/source/ui/framework boost::scoped_ptr->std::unique_ptr
Change-Id: I37e8c596d7afc3f7d0461b40e596dea45e9470a4 Reviewed-on: https://gerrit.libreoffice.org/18824 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/ui/framework/configuration/ConfigurationController.cxx')
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationController.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationController.cxx b/sd/source/ui/framework/configuration/ConfigurationController.cxx
index d6b221577497..abfaa87fc855 100644
--- a/sd/source/ui/framework/configuration/ConfigurationController.cxx
+++ b/sd/source/ui/framework/configuration/ConfigurationController.cxx
@@ -36,7 +36,7 @@
#include <osl/mutex.hxx>
#include <vcl/svapp.hxx>
-#include <boost/scoped_ptr.hpp>
+#include <memory>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
@@ -80,7 +80,7 @@ public:
/** The queue processor ownes the queue of configuration change request
objects and processes the objects.
*/
- ::boost::scoped_ptr<ChangeRequestQueueProcessor> mpQueueProcessor;
+ std::unique_ptr<ChangeRequestQueueProcessor> mpQueueProcessor;
std::shared_ptr<ConfigurationUpdaterLock> mpConfigurationUpdaterLock;