diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-15 20:54:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 12:54:45 +0000 |
commit | 01a8bda416d1598f5486f95b6a57d61ff09873ed (patch) | |
tree | c37934d13308426d22599f63bf8666305a6b1f80 /configmgr/source/update.cxx | |
parent | a1ceacc17e3f30d5e9c06b3218ad8ec26ca2f1b9 (diff) |
boost::noncopyable->'= delete'
Change-Id: If0f898a1e912fcd2095d8ba88b2b8046596e16ea
Diffstat (limited to 'configmgr/source/update.cxx')
-rw-r--r-- | configmgr/source/update.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configmgr/source/update.cxx b/configmgr/source/update.cxx index 7c6371b493a5..6e5563eccb6f 100644 --- a/configmgr/source/update.cxx +++ b/configmgr/source/update.cxx @@ -23,7 +23,6 @@ #include <memory> #include <set> -#include <boost/noncopyable.hpp> #include <com/sun/star/configuration/XUpdate.hpp> #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/RuntimeException.hpp> @@ -58,8 +57,7 @@ std::set< OUString > seqToSet( } class Service: - public cppu::WeakImplHelper1< css::configuration::XUpdate >, - private boost::noncopyable + public cppu::WeakImplHelper1< css::configuration::XUpdate > { public: Service(css::uno::Reference< css::uno::XComponentContext > const context): @@ -70,6 +68,9 @@ public: } private: + Service(const Service&) SAL_DELETED_FUNCTION; + Service& operator=(const Service&) SAL_DELETED_FUNCTION; + virtual ~Service() {} virtual void SAL_CALL insertExtensionXcsFile( |