From 5d5c4686badbf67aa25b18701f25d90fa8b4e42a Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 28 Oct 2015 16:14:12 +0200 Subject: remove boost::noncopyable from /include Change-Id: I9fa22b06fabf79043ebc68be7afebc6e810f4db1 --- include/svl/asiancfg.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/svl') diff --git a/include/svl/asiancfg.hxx b/include/svl/asiancfg.hxx index 738d127933e4..71662c4a57f7 100644 --- a/include/svl/asiancfg.hxx +++ b/include/svl/asiancfg.hxx @@ -22,7 +22,6 @@ #include -#include #include #include #include @@ -32,11 +31,12 @@ namespace com { namespace sun { namespace star { namespace lang { struct Locale; } } } } -class SVL_DLLPUBLIC SvxAsianConfig: private boost::noncopyable { +class SVL_DLLPUBLIC SvxAsianConfig { public: SvxAsianConfig(); - ~SvxAsianConfig(); + SvxAsianConfig(const SvxAsianConfig&) = delete; + SvxAsianConfig& operator=( const SvxAsianConfig& ) = delete; void Commit(); -- cgit