diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-03-23 12:59:23 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-03-23 15:51:51 +0100 |
commit | bbf3083e0d9645a8862dec1957f34a26f123fa6f (patch) | |
tree | 4cb02f5b042790fdd8ac04c8f95edbc0ec424248 /sw/inc/shellio.hxx | |
parent | 7b08ccceffac5b5df904f84ca0b5aa646d6bd00e (diff) |
sw: replace boost::noncopyable with C++11 delete
Change-Id: I672b187c92ccb71a6c4b9bc5e1169970fb61aa7d
Diffstat (limited to 'sw/inc/shellio.hxx')
-rw-r--r-- | sw/inc/shellio.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx index 9d492b38a322..6c6160224602 100644 --- a/sw/inc/shellio.hxx +++ b/sw/inc/shellio.hxx @@ -20,7 +20,6 @@ #define INCLUDED_SW_INC_SHELLIO_HXX #include <memory> -#include <boost/noncopyable.hpp> #include <com/sun/star/uno/Reference.h> #include <com/sun/star/embed/XStorage.hpp> @@ -355,7 +354,6 @@ class IDocumentStylePoolAccess; class SW_DLLPUBLIC Writer : public SvRefBase - , private ::boost::noncopyable { SwAsciiOptions aAscOpts; OUString sBaseURL; @@ -365,6 +363,9 @@ class SW_DLLPUBLIC Writer ::std::unique_ptr<Writer_Impl> m_pImpl; + Writer(Writer const&) = delete; + Writer& operator=(Writer const&) = delete; + protected: SwPaM* pOrigPam; // Last Pam that has to be processed. |