summaryrefslogtreecommitdiffstats
path: root/shell/source/backends/kde4be/kde4backend.cxx
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-04-13 10:07:19 +0200
committerMichael Stahl <mstahl@redhat.com>2016-04-13 11:34:32 +0000
commit0de868cd0f430efc6256926c2865530818d7b7dd (patch)
tree60e681b0e119d50022500fbc0f91cbdd4d7c979c /shell/source/backends/kde4be/kde4backend.cxx
parentloplugin:passstuffbyref in svtools (diff)
downloadcore-0de868cd0f430efc6256926c2865530818d7b7dd.tar.gz
core-0de868cd0f430efc6256926c2865530818d7b7dd.zip
tdf#94306 replace boost::noncopyable in sfx2 to sot
Replace with C++11 delete copy-constructur and copy-assignment. Remove boost/noncopyable.hpp includes. Add missing default ctors. Make some overloaded ctors explicit, seems cppcheck doesn't flag: T(const template<X>& rx). Change-Id: I63c5a3ac84a33ea6d49868e2d9aa281ada79958e Reviewed-on: https://gerrit.libreoffice.org/24050 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'shell/source/backends/kde4be/kde4backend.cxx')
-rw-r--r--shell/source/backends/kde4be/kde4backend.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/source/backends/kde4be/kde4backend.cxx b/shell/source/backends/kde4be/kde4backend.cxx
index d15f2d2e1d72..013e5321d507 100644
--- a/shell/source/backends/kde4be/kde4backend.cxx
+++ b/shell/source/backends/kde4be/kde4backend.cxx
@@ -21,7 +21,6 @@
#include <kapplication.h>
-#include "boost/noncopyable.hpp"
#include "com/sun/star/beans/Optional.hpp"
#include "com/sun/star/beans/PropertyVetoException.hpp"
#include "com/sun/star/beans/UnknownPropertyException.hpp"
@@ -66,11 +65,12 @@ css::uno::Sequence< OUString > SAL_CALL getServiceSupportedServiceNames() {
class Service:
public cppu::WeakImplHelper<
- css::lang::XServiceInfo, css::beans::XPropertySet >,
- private boost::noncopyable
+ css::lang::XServiceInfo, css::beans::XPropertySet >
{
public:
Service();
+ Service(const Service&) = delete;
+ Service& operator=(const Service&) = delete;
private:
virtual ~Service() {}