summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8par.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-04-06 17:40:50 +0200
committerMichael Stahl <mstahl@redhat.com>2016-04-07 11:05:01 +0200
commit1f036d51fa581c3a4f80065d0fbe77b7076665e4 (patch)
tree25cb614f636949f0ccb2ac60fe520a4f6032d9c1 /sw/source/filter/ww8/ww8par.cxx
parent71aa80300c89c726254049f775d1c48518b6dfe4 (diff)
sw: replace boost::noncopyable with C++11 delete
Change-Id: I5c97c500096dee70bf9208daae38c3f042ac57d3
Diffstat (limited to 'sw/source/filter/ww8/ww8par.cxx')
-rw-r--r--sw/source/filter/ww8/ww8par.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 72919f674cba..b1d72b99a9a7 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -21,7 +21,6 @@
#include <sal/config.h>
-#include <boost/noncopyable.hpp>
#include <com/sun/star/embed/ElementModes.hpp>
#include <i18nlangtag/languagetag.hxx>
@@ -439,7 +438,7 @@ OUString BasicProjImportHelper::getProjectName()
return sProjName;
}
-class Sttb : public TBBase, private boost::noncopyable
+class Sttb : public TBBase
{
struct SBBItem
{
@@ -453,6 +452,9 @@ struct SBBItem
std::vector< SBBItem > dataItems;
+ Sttb(Sttb const&) = delete;
+ Sttb& operator=(Sttb const&) = delete;
+
public:
Sttb();
virtual ~Sttb();