summaryrefslogtreecommitdiffstats
path: root/desktop/source/deployment/misc
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-04-08 14:58:51 +0200
committerDavid Tardon <dtardon@redhat.com>2016-04-08 17:42:57 +0000
commit922ee9a9da62febfe38a7780b11cf0d7ea0d5685 (patch)
treec9e59d34db8a32b17894991b6f377101990bc7fe /desktop/source/deployment/misc
parenttdf#94306 replace boost::noncopyable in chart2 (diff)
downloadcore-922ee9a9da62febfe38a7780b11cf0d7ea0d5685.tar.gz
core-922ee9a9da62febfe38a7780b11cf0d7ea0d5685.zip
tdf#94306 replace boost::noncopyable in d...
dbaccess, desktop and drawinglayer. Replace with C++11 delete copy-constructur and copy-assignment. Nothing special, only one unused include in dbaccess/source/filter/xml/xmlfilter.cxx. Change-Id: Iebabbc658215162450d4caf08d4fb2f116c456d9 Reviewed-on: https://gerrit.libreoffice.org/23918 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'desktop/source/deployment/misc')
-rw-r--r--desktop/source/deployment/misc/dp_descriptioninfoset.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
index 021de7ae7e0a..1e0563378b20 100644
--- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
+++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
@@ -25,7 +25,6 @@
#include <comphelper/sequence.hxx>
#include <comphelper/seqstream.hxx>
#include <comphelper/processfactory.hxx>
-#include <boost/noncopyable.hpp>
#include <boost/optional.hpp>
#include <com/sun/star/configuration/theDefaultProvider.hpp>
#include <com/sun/star/container/XNameAccess.hpp>
@@ -58,14 +57,16 @@ namespace {
using css::uno::Reference;
class EmptyNodeList:
- public cppu::WeakImplHelper<css::xml::dom::XNodeList>,
- private boost::noncopyable
+ public cppu::WeakImplHelper<css::xml::dom::XNodeList>
{
public:
EmptyNodeList();
virtual ~EmptyNodeList();
+ EmptyNodeList(const EmptyNodeList&) = delete;
+ const EmptyNodeList& operator=(const EmptyNodeList&) = delete;
+
virtual ::sal_Int32 SAL_CALL getLength() throw (css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL