summaryrefslogtreecommitdiff
path: root/forms/source/inc/propertybaghelper.hxx
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-04-09 17:07:54 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-11 07:22:50 +0000
commitd84ef731d8f5d8c1e896ecda3d03d4bb9129578d (patch)
tree582bdc8fc22114031c5564e2abb1691ef56acfe0 /forms/source/inc/propertybaghelper.hxx
parent2553c5b95d4596fc1ef679a42073d5bc62737914 (diff)
tdf#94306 replace boost::noncopyable ...
... in modules editeng to oox. Replace with C++11 delete copy-constructur and copy-assignment. Remove boost/noncopyable.hpp includes and one unused boost/checked_delete.hpp include in linguistic. Change-Id: I5a38d8e5ac1b4286bdeb3858d56490a53d13fe80 Reviewed-on: https://gerrit.libreoffice.org/23928 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'forms/source/inc/propertybaghelper.hxx')
-rw-r--r--forms/source/inc/propertybaghelper.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/inc/propertybaghelper.hxx b/forms/source/inc/propertybaghelper.hxx
index a309085241c2..f4ca932704ef 100644
--- a/forms/source/inc/propertybaghelper.hxx
+++ b/forms/source/inc/propertybaghelper.hxx
@@ -25,8 +25,6 @@
#include <comphelper/propertybag.hxx>
#include <comphelper/propagg.hxx>
-#include <boost/noncopyable.hpp>
-
namespace frm
{
@@ -51,7 +49,7 @@ namespace frm
~IPropertyBagHelperContext() {}
};
- class PropertyBagHelper : public ::boost::noncopyable
+ class PropertyBagHelper
{
private:
IPropertyBagHelperContext& m_rContext;
@@ -62,6 +60,8 @@ namespace frm
public:
PropertyBagHelper( IPropertyBagHelperContext& _rContext );
~PropertyBagHelper();
+ PropertyBagHelper(const PropertyBagHelper&) = delete;
+ PropertyBagHelper& operator=(const PropertyBagHelper&) = delete;
// XComponent equivalent
void dispose();